1 Star 0 Fork 0

李佳柠/Business flow verification

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
clientDB.go 1.71 KB
一键复制 编辑 原始数据 按行查看 历史
lemon-ljn 提交于 2024-12-11 21:44 . Update submodule content
package main
//
//import (
// "database/sql"
// "fmt"
// "log"
//)
//
//func ConnectClientDB()(db *sql.DB){
// database, err := sql.Open("mysql",
// "root:794613@tcp(127.0.0.1:3306)/client")
// if err != nil {
// log.Println("open mysql failed,", err)
// }
// db = database
// CreateTime(db)
// return
//}
//func CreateTime(db *sql.DB){
// //create bid_table
// createTable := "CREATE TABLE `ana` (" +
// "`id` INT(11) NOT NULL AUTO_INCREMENT," +
// "`len` INT(11) NOT NULL," +
// "`time1` BIGINT(20) NULL DEFAULT NULL," +
// "`time2` BIGINT(20) NULL DEFAULT NULL," +
// "`time3` BIGINT(20) NULL DEFAULT NULL," +
// "`time4` BIGINT(20) NULL DEFAULT NULL," +
// "PRIMARY KEY (`id`))" +
// "COLLATE='latin1_swedish_ci'" +
// "ENGINE=InnoDB;"
// _, err := db.Exec(createTable)
// if err != nil {
// log.Println(err)
// }else{
// log.Println("创建成功")
// }
//
//}
//
//func InsertTime1(db *sql.DB, time int64, len int) {
// sqlStr := `insert into ana(time1, len)values(?,?)`
// _, err := db.Exec(sqlStr, time, len)
// if err != nil {
// fmt.Println("exec failed;err:", err)
// }
//}
//
//func InsertTime2(db *sql.DB, time int64, len int) {
// sqlStr := `insert into ana(time2, len)values(?,?)`
// _, err := db.Exec(sqlStr, time, len)
// if err != nil {
// fmt.Println("exec failed;err:", err)
// }
//}
//func InsertTime3(db *sql.DB, time int64, len int) {
// sqlStr := `insert into ana(time3, len)values(?,?)`
// _, err := db.Exec(sqlStr, time, len)
// if err != nil {
// fmt.Println("exec failed;err:", err)
// }
//}
//func InsertTime4(db *sql.DB, time int64, len int) {
// sqlStr := `insert into ana(time4, len)values(?,?)`
// _, err := db.Exec(sqlStr, time, len)
// if err != nil {
// fmt.Println("exec failed;err:", err)
// }
//}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/lemon-ljn/business-flow-verification.git
[email protected]:lemon-ljn/business-flow-verification.git
lemon-ljn
business-flow-verification
Business flow verification
master

搜索帮助