Created
March 2, 2016 04:20
-
-
Save ChrisCates/a762aef635be4d4a932c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chaingres | |
.new(client) | |
.table("") | |
.insert({ | |
"column1": "value1", | |
"column2": "value2" | |
}).then(function(err,result) { | |
console.log(result); | |
}) | |
//Transpiles to | |
result = "INSERT INTO (column1, column2) VALUES (value1, value2)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment