2017-10-31 00:57:57 +00:00
package qgen
import "database/sql"
type transactionStmt struct {
stmt * sql . Stmt
firstErr error // This'll let us chain the methods to reduce boilerplate
}
func newTransactionStmt ( stmt * sql . Stmt , err error ) * transactionStmt {
return & transactionStmt { stmt , err }
}
func ( stmt * transactionStmt ) Exec ( args ... interface { } ) ( * sql . Result , error ) {
if stmt . firstErr != nil {
return nil , stmt . firstErr
}
return stmt . Exec ( args ... )
}
type TransactionBuilder struct {
tx * sql . Tx
2017-11-12 05:25:04 +00:00
adapter Adapter
2017-10-31 00:57:57 +00:00
textToStmt map [ string ] * transactionStmt
}
func ( build * TransactionBuilder ) SimpleDelete ( table string , where string ) ( stmt * sql . Stmt , err error ) {
2018-12-27 05:42:41 +00:00
res , err := build . adapter . SimpleDelete ( "" , table , where )
2017-10-31 00:57:57 +00:00
if err != nil {
return stmt , err
}
return build . tx . Prepare ( res )
}
// Quick* versions refer to it being quick to type not the performance. For performance critical transactions, you might want to use the Simple* methods or the *Tx methods on the main builder. Alternate suggestions for names are welcome :)
func ( build * TransactionBuilder ) QuickDelete ( table string , where string ) * transactionStmt {
2018-12-27 05:42:41 +00:00
res , err := build . adapter . SimpleDelete ( "" , table , where )
2017-10-31 00:57:57 +00:00
if err != nil {
return newTransactionStmt ( nil , err )
}
stmt , ok := build . textToStmt [ res ]
if ok {
return stmt
}
stmt = newTransactionStmt ( build . tx . Prepare ( res ) )
build . textToStmt [ res ] = stmt
return stmt
}
func ( build * TransactionBuilder ) SimpleInsert ( table string , columns string , fields string ) ( stmt * sql . Stmt , err error ) {
2018-12-27 05:42:41 +00:00
res , err := build . adapter . SimpleInsert ( "" , table , columns , fields )
2017-10-31 00:57:57 +00:00
if err != nil {
return stmt , err
}
return build . tx . Prepare ( res )
}
func ( build * TransactionBuilder ) QuickInsert ( table string , where string ) * transactionStmt {
2018-12-27 05:42:41 +00:00
res , err := build . adapter . SimpleDelete ( "" , table , where )
2017-10-31 00:57:57 +00:00
if err != nil {
return newTransactionStmt ( nil , err )
}
stmt , ok := build . textToStmt [ res ]
if ok {
return stmt
}
stmt = newTransactionStmt ( build . tx . Prepare ( res ) )
build . textToStmt [ res ] = stmt
return stmt
}