You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.1 KiB
Go
26 lines
1.1 KiB
Go
1 year ago
|
// A library for generating sql programmatically.
|
||
|
//
|
||
|
// SQL COMPATIBILITY NOTE: sqlbuilder is designed to generate valid MySQL sql
|
||
|
// statements. The generated statements may not work for other sql variants.
|
||
|
// For instances, the generated statements does not currently work for
|
||
|
// PostgreSQL since column identifiers are escaped with backquotes.
|
||
|
// Patches to support other sql flavors are welcome! (see
|
||
|
// https://godropbox/issues/33 for additional details).
|
||
|
//
|
||
|
// Known limitations for SELECT queries:
|
||
|
// - does not support subqueries (since mysql is bad at it)
|
||
|
// - does not currently support join table alias (and hence self join)
|
||
|
// - does not support NATURAL joins and join USING
|
||
|
//
|
||
|
// Known limitation for INSERT statements:
|
||
|
// - does not support "INSERT INTO SELECT"
|
||
|
//
|
||
|
// Known limitation for UPDATE statements:
|
||
|
// - does not support update without a WHERE clause (since it is dangerous)
|
||
|
// - does not support multi-table update
|
||
|
//
|
||
|
// Known limitation for DELETE statements:
|
||
|
// - does not support delete without a WHERE clause (since it is dangerous)
|
||
|
// - does not support multi-table delete
|
||
|
package sqlbuilder
|