2 Star 15 Fork 10

北京小程科技有限公司/Go通用工具

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
sql_common.go 307 Bytes
Copy Edit Raw Blame History
shallot authored 2019-07-14 13:20 +08:00 . 提交SQLCommon实现。
package basic
import "database/sql"
// 原始SQL的接口
type SQLCommon interface {
Exec(query string, args ...interface{}) (sql.Result, error)
Prepare(query string) (*sql.Stmt, error)
Query(query string, args ...interface{}) (*sql.Rows, error)
QueryRow(query string, args ...interface{}) *sql.Row
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/xiaochengtech/common.git
git@gitee.com:xiaochengtech/common.git
xiaochengtech
common
Go通用工具
82269be32710

Search