File tree Expand file tree Collapse file tree 12 files changed +96
-0
lines changed Expand file tree Collapse file tree 12 files changed +96
-0
lines changed Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) 2010-2016 Brian Carlson (brian.m.carlson@gmail.com)
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * README.md file in the root directory of this source tree.
7+ */
8+
19var crypto = require ( 'crypto' ) ;
210var EventEmitter = require ( 'events' ) . EventEmitter ;
311var util = require ( 'util' ) ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) 2010-2016 Brian Carlson (brian.m.carlson@gmail.com)
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * README.md file in the root directory of this source tree.
7+ */
8+
19var url = require ( 'url' ) ;
210var dns = require ( 'dns' ) ;
311
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) 2010-2016 Brian Carlson (brian.m.carlson@gmail.com)
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * README.md file in the root directory of this source tree.
7+ */
8+
19var net = require ( 'net' ) ;
210var EventEmitter = require ( 'events' ) . EventEmitter ;
311var util = require ( 'util' ) ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) 2010-2016 Brian Carlson (brian.m.carlson@gmail.com)
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * README.md file in the root directory of this source tree.
7+ */
8+
19var defaults = module . exports = {
210 // database host. defaults to localhost
311 host : 'localhost' ,
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) 2010-2016 Brian Carlson (brian.m.carlson@gmail.com)
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * README.md file in the root directory of this source tree.
7+ */
8+
19var EventEmitter = require ( 'events' ) . EventEmitter ;
210var util = require ( 'util' ) ;
311var Client = require ( './client' ) ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) 2010-2016 Brian Carlson (brian.m.carlson@gmail.com)
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * README.md file in the root directory of this source tree.
7+ */
8+
19var Native = require ( 'pg-native' ) ;
210var TypeOverrides = require ( '../type-overrides' ) ;
311var semver = require ( 'semver' ) ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) 2010-2016 Brian Carlson (brian.m.carlson@gmail.com)
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * README.md file in the root directory of this source tree.
7+ */
8+
19var EventEmitter = require ( 'events' ) . EventEmitter ;
210var util = require ( 'util' ) ;
311var utils = require ( '../utils' ) ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) 2010-2016 Brian Carlson (brian.m.carlson@gmail.com)
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * README.md file in the root directory of this source tree.
7+ */
8+
19var NativeResult = module . exports = function ( pq ) {
210 this . command = null ;
311 this . rowCount = 0 ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) 2010-2016 Brian Carlson (brian.m.carlson@gmail.com)
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * README.md file in the root directory of this source tree.
7+ */
8+
19var EventEmitter = require ( 'events' ) . EventEmitter ;
210var util = require ( 'util' ) ;
311
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright (c) 2010-2016 Brian Carlson (brian.m.carlson@gmail.com)
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * README.md file in the root directory of this source tree.
7+ */
8+
19var types = require ( 'pg-types' ) ;
210
311//result object returned from query
You can’t perform that action at this time.
0 commit comments