-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changed sql generation methods to use a common naming convention. `To(Sql|Insert|Update|Delete)` * Also changed to have common return values `string, []interface{}, error)` * Added `Dataset.Prepared` which allows a user to specify whether or not SQL should be interpolated. #7 * Updated Docs * More examples * Increased test coverage.
- Loading branch information
1 parent
a60668d
commit 3ecfc3f
Showing
24 changed files
with
1,272 additions
and
946 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
language: go | ||
|
||
go: | ||
- 1.3 | ||
- tip | ||
|
||
|
||
addons: | ||
postgresql: "9.3" | ||
|
||
before_script: | ||
- psql -c 'create database goqupostgres;' -U postgres | ||
- mysql -e 'create database goqumysql;' |
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
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
Oops, something went wrong.