We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f65efee commit 4b5de44Copy full SHA for 4b5de44
database/db.go
@@ -269,6 +269,10 @@ func (db *DB) BuildInsertStatement(stmt InsertStatement) string {
269
return db.queryBuilder.InsertStatement(stmt)
270
}
271
272
+func (db *DB) BuildSelectStatement(stmt SelectStatement) string {
273
+ return db.queryBuilder.SelectStatement(stmt)
274
+}
275
+
276
// BuildDeleteStmt returns a DELETE statement for the given struct.
277
func (db *DB) BuildDeleteStmt(from interface{}) string {
278
return fmt.Sprintf(
0 commit comments