This repository was archived by the owner on May 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathselect.js
71 lines (65 loc) · 1.53 KB
/
select.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
* A select statemet
* * @param {String} statement: the actual select statment
*/
//An SQL select statement
Devwik.SQL.Select = function(name, statement) {
var self = this;
self.name = name;
self.statement = statement;
self.cols = [];
var future = new Future();
//Get the structure for a select
Devwik.SQL.connection.query(statement, function(err, rows) {
if (err) throw err;
_.each(rows, function(row){
if(self.cols.length === 0) {
self.setCols(row);
}
});
future.ret();
}, self);
future.wait();
this.setPublish();
return;
};
Devwik.SQL.Select.prototype.setCols = function(row) {
var self = this;
_.each(row, function(value, name){
var col = {};
col.name = name;
col.type = Devwik.toType(value);
self.cols.push(col);
});
};
/*
* Publish the Select to the client
*/
Devwik.SQL.Select.prototype.setPublish = function() {
var select = this;
Meteor.publish(select.name, function () {
var self = this;
/*
* Set up the callbacks
*/
select.added = function(name, id, data) {
self.added(name, id, data);
};
select.changed = function(name, id, data) {
self.changed(name, id, data);
};
select.removed = function(name, id) {
self.removed(name, id);
};
//fut.ret();
query = Devwik.SQL.connection.query(select.statement, function(err, result) {
if (err) {
throw err;
}
_.each(result, function(row){
self.added(select.name, new Meteor.Collection.ObjectID(), row);
});
self.ready();//indicate that the initial rows are ready
});
});
};