Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support for alter database #27

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
support for alter database
  • Loading branch information
sharpred committed Jul 25, 2012
commit 30a812a98eb46d6cdbdbed4a70a3bf1879b8cc50
2 changes: 1 addition & 1 deletion joli.js
Expand Up @@ -529,7 +529,7 @@ var joliCreator = function() {
case 'update':
return 'update ' + this.data.from + ' set ' + this.data.set.join(', ');
default:
throw ("Operation type Error. joli.query operation type must be an insert, a delete, a select or an update.");
throw ("Operation type Error. joli.query operation type must be an insert, a delete, a select , alter or an update.");
}
},
getQuery : function() {
Expand Down