Skip to content

Commit 4b2cde9

Browse files
authored
Merge pull request #4 from worldspawn/showdatabase
added showDatabase method
2 parents a0a6569 + 60ec657 commit 4b2cde9

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

index.js

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var Base = Class.extend({
2525
},
2626

2727
close: function() {
28-
throw new Error('not yet implemented');
28+
throw new Error('not implemented');
2929
},
3030

3131
mapDataType: function(str) {
@@ -83,6 +83,10 @@ var Base = Class.extend({
8383
throw new Error('not implemented');
8484
},
8585

86+
showDatabase: function () {
87+
throw new Error('not implemented');
88+
},
89+
8690
switchDatabase: function() {
8791
throw new Error('not implemented');
8892
},
@@ -249,7 +253,7 @@ var Base = Class.extend({
249253
},
250254

251255
renameTable: function(tableName, newTableName, callback) {
252-
throw new Error('not yet implemented');
256+
throw new Error('not implemented');
253257
},
254258

255259
addColumn: function(tableName, columnName, columnSpec, callback) {
@@ -276,15 +280,15 @@ var Base = Class.extend({
276280
},
277281

278282
removeColumn: function(tableName, columnName, callback) {
279-
throw new Error('not yet implemented');
283+
throw new Error('not implemented');
280284
},
281285

282286
renameColumn: function(tableName, oldColumnName, newColumnName, callback) {
283-
throw new Error('not yet implemented');
287+
throw new Error('not implemented');
284288
},
285289

286290
changeColumn: function(tableName, columnName, columnSpec, callback) {
287-
throw new Error('not yet implemented');
291+
throw new Error('not implemented');
288292
},
289293

290294
quoteDDLArr: function(arr) {

0 commit comments

Comments
 (0)