@@ -25,7 +25,7 @@ var Base = Class.extend({
25
25
} ,
26
26
27
27
close : function ( ) {
28
- throw new Error ( 'not yet implemented' ) ;
28
+ throw new Error ( 'not implemented' ) ;
29
29
} ,
30
30
31
31
mapDataType : function ( str ) {
@@ -83,6 +83,10 @@ var Base = Class.extend({
83
83
throw new Error ( 'not implemented' ) ;
84
84
} ,
85
85
86
+ showDatabase : function ( ) {
87
+ throw new Error ( 'not implemented' ) ;
88
+ } ,
89
+
86
90
switchDatabase : function ( ) {
87
91
throw new Error ( 'not implemented' ) ;
88
92
} ,
@@ -239,7 +243,7 @@ var Base = Class.extend({
239
243
} ,
240
244
241
245
renameTable : function ( tableName , newTableName , callback ) {
242
- throw new Error ( 'not yet implemented' ) ;
246
+ throw new Error ( 'not implemented' ) ;
243
247
} ,
244
248
245
249
addColumn : function ( tableName , columnName , columnSpec , callback ) {
@@ -260,15 +264,15 @@ var Base = Class.extend({
260
264
} ,
261
265
262
266
removeColumn : function ( tableName , columnName , callback ) {
263
- throw new Error ( 'not yet implemented' ) ;
267
+ throw new Error ( 'not implemented' ) ;
264
268
} ,
265
269
266
270
renameColumn : function ( tableName , oldColumnName , newColumnName , callback ) {
267
- throw new Error ( 'not yet implemented' ) ;
271
+ throw new Error ( 'not implemented' ) ;
268
272
} ,
269
273
270
274
changeColumn : function ( tableName , columnName , columnSpec , callback ) {
271
- throw new Error ( 'not yet implemented' ) ;
275
+ throw new Error ( 'not implemented' ) ;
272
276
} ,
273
277
274
278
quoteDDLArr : function ( arr ) {
0 commit comments