GO语言"database/sql"包中"DB.Prepare"类型的用法及代码示例。
用法:
func(db *DB) Prepare(query string)(*Stmt, error)
Prepare 为以后的查询或执行创建准备好的语句。可以从返回的语句同时运行多个查询或执行。当不再需要该语句时,调用者必须调用该语句的 Close 方法。
Prepare 在内部使用 context.Background;要指定上下文,请使用PrepareContext
例子:
package main
import (
"context"
"database/sql"
"log"
)
var (
ctx context.Context
db *sql.DB
)
func main() {
projects := []struct {
mascot string
release int
}{
{"tux", 1991},
{"duke", 1996},
{"gopher", 2009},
{"moby dock", 2013},
}
stmt, err := db.Prepare("INSERT INTO projects(id, mascot, release, category) VALUES( ?, ?, ?, ? )")
if err != nil {
log.Fatal(err)
}
defer stmt.Close() // Prepared statements take up server resources and should be closed after use.
for id, project := range projects {
if _, err := stmt.Exec(id+1, project.mascot, project.release, "open source"); err != nil {
log.Fatal(err)
}
}
}
相关用法
- GO DB.PingContext用法及代码示例
- GO DB.QueryRowContext用法及代码示例
- GO DB.ExecContext用法及代码示例
- GO DB.BeginTx用法及代码示例
- GO DB.QueryContext用法及代码示例
- GO DB.Query用法及代码示例
- GO DecodeLastRuneInString用法及代码示例
- GO DumpResponse用法及代码示例
- GO Date用法及代码示例
- GO Dial用法及代码示例
- GO Decoder.Token用法及代码示例
- GO Decoder.Decode用法及代码示例
- GO DumpRequest用法及代码示例
- GO Drawer用法及代码示例
- GO Duration.Hours用法及代码示例
- GO Duration.Round用法及代码示例
- GO DecodeRuneInString用法及代码示例
- GO DumpRequestOut用法及代码示例
- GO DecodeRune用法及代码示例
- GO Duration用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 DB.Prepare。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。