Skip to content

Commit

Permalink
Merge pull request #4 from worldspawn/showdatabase
Browse files Browse the repository at this point in the history
added showDatabase method
  • Loading branch information
wzrdtales authored Jun 25, 2017
2 parents a0a6569 + 60ec657 commit 4b2cde9
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var Base = Class.extend({
},

close: function() {
throw new Error('not yet implemented');
throw new Error('not implemented');
},

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

showDatabase: function () {
throw new Error('not implemented');
},

switchDatabase: function() {
throw new Error('not implemented');
},
Expand Down Expand Up @@ -249,7 +253,7 @@ var Base = Class.extend({
},

renameTable: function(tableName, newTableName, callback) {
throw new Error('not yet implemented');
throw new Error('not implemented');
},

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

removeColumn: function(tableName, columnName, callback) {
throw new Error('not yet implemented');
throw new Error('not implemented');
},

renameColumn: function(tableName, oldColumnName, newColumnName, callback) {
throw new Error('not yet implemented');
throw new Error('not implemented');
},

changeColumn: function(tableName, columnName, columnSpec, callback) {
throw new Error('not yet implemented');
throw new Error('not implemented');
},

quoteDDLArr: function(arr) {
Expand Down

0 comments on commit 4b2cde9

Please sign in to comment.