@@ -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
} ,
@@ -249,7 +253,7 @@ var Base = Class.extend({
249
253
} ,
250
254
251
255
renameTable : function ( tableName , newTableName , callback ) {
252
- throw new Error ( 'not yet implemented' ) ;
256
+ throw new Error ( 'not implemented' ) ;
253
257
} ,
254
258
255
259
addColumn : function ( tableName , columnName , columnSpec , callback ) {
@@ -276,15 +280,15 @@ var Base = Class.extend({
276
280
} ,
277
281
278
282
removeColumn : function ( tableName , columnName , callback ) {
279
- throw new Error ( 'not yet implemented' ) ;
283
+ throw new Error ( 'not implemented' ) ;
280
284
} ,
281
285
282
286
renameColumn : function ( tableName , oldColumnName , newColumnName , callback ) {
283
- throw new Error ( 'not yet implemented' ) ;
287
+ throw new Error ( 'not implemented' ) ;
284
288
} ,
285
289
286
290
changeColumn : function ( tableName , columnName , columnSpec , callback ) {
287
- throw new Error ( 'not yet implemented' ) ;
291
+ throw new Error ( 'not implemented' ) ;
288
292
} ,
289
293
290
294
quoteDDLArr : function ( arr ) {
0 commit comments