本文整理汇总了Golang中upper/io/db/v2/internal/sqladapter/exql.Statement.Compile方法的典型用法代码示例。如果您正苦于以下问题:Golang Statement.Compile方法的具体用法?Golang Statement.Compile怎么用?Golang Statement.Compile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类upper/io/db/v2/internal/sqladapter/exql.Statement
的用法示例。
在下文中一共展示了Statement.Compile方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: compileAndReplacePlaceholders
func (s *stringer) compileAndReplacePlaceholders(stmt *exql.Statement) (query string) {
buf := stmt.Compile(s.t)
j := 1
for i := range buf {
if buf[i] == '?' {
query = query + "$" + strconv.Itoa(j)
j++
} else {
query = query + string(buf[i])
}
}
return query
}
示例2: CompileStatement
// CompileStatement allows sqladapter to compile the given statement into the
// format MySQL expects.
func (d *database) CompileStatement(stmt *exql.Statement, args []interface{}) (string, []interface{}) {
return sqlbuilder.Preprocess(stmt.Compile(template), args)
}
示例3: StatementQueryRow
func (p *exprProxy) StatementQueryRow(stmt *exql.Statement, args ...interface{}) (*sql.Row, error) {
s := stmt.Compile(p.t)
return p.db.QueryRow(s, args...), nil
}
示例4: StatementExec
func (p *exprProxy) StatementExec(stmt *exql.Statement, args ...interface{}) (sql.Result, error) {
s := stmt.Compile(p.t)
return p.db.Exec(s, args...)
}