Skip to content

Commit 60ec657

Browse files
committed
added showDatabase method
1 parent 05762f3 commit 60ec657

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
},
@@ -239,7 +243,7 @@ var Base = Class.extend({
239243
},
240244

241245
renameTable: function(tableName, newTableName, callback) {
242-
throw new Error('not yet implemented');
246+
throw new Error('not implemented');
243247
},
244248

245249
addColumn: function(tableName, columnName, columnSpec, callback) {
@@ -260,15 +264,15 @@ var Base = Class.extend({
260264
},
261265

262266
removeColumn: function(tableName, columnName, callback) {
263-
throw new Error('not yet implemented');
267+
throw new Error('not implemented');
264268
},
265269

266270
renameColumn: function(tableName, oldColumnName, newColumnName, callback) {
267-
throw new Error('not yet implemented');
271+
throw new Error('not implemented');
268272
},
269273

270274
changeColumn: function(tableName, columnName, columnSpec, callback) {
271-
throw new Error('not yet implemented');
275+
throw new Error('not implemented');
272276
},
273277

274278
quoteDDLArr: function(arr) {

0 commit comments

Comments
 (0)