37956e22c5
Fixes #708
22 lines
502 B
JavaScript
22 lines
502 B
JavaScript
var NativeResult = module.exports = function(pq) {
|
|
this.command = null;
|
|
this.rowCount = 0;
|
|
this.rows = null;
|
|
this.fields = null;
|
|
};
|
|
|
|
NativeResult.prototype.addCommandComplete = function(pq) {
|
|
this.command = pq.cmdStatus().split(' ')[0];
|
|
this.rowCount = parseInt(pq.cmdTuples(), 10);
|
|
var nfields = pq.nfields();
|
|
if(nfields < 1) return;
|
|
|
|
this.fields = [];
|
|
for(var i = 0; i < nfields; i++) {
|
|
this.fields.push({
|
|
name: pq.fname(i),
|
|
dataTypeID: pq.ftype(i)
|
|
});
|
|
}
|
|
};
|