Create database in mysql with golang

huangapple go评论83阅读模式
英文:

Create database in mysql with golang

问题

我有一段代码,如果数据库和表不存在的话,应该可以自动创建MySQL数据库和表。

如果我有数据库,我可以创建表,但是我无法创建数据库,因为在连接字符串中我应该提供数据库名。

db, err := sql.Open("mysql", "user:pass@tcp(localhost:3306)/dbname?charset=utf8")

是否可以使用sql包来实现这个功能?

英文:

I have a code that should create automatically database and table in mysql if they are not exist.

I can create table if I have DB, but I cannot create DB, because in connection string I should provide dbname.

db, err := sql.Open("mysql", "user:pass@tcp(localhost:3306)/dbname?charset=utf8")

Is it possible to do it with sql package?

答案1

得分: 0

是的,只需从URL中省略数据库名称,并运行一个CREATE查询。之后,您可以打开与数据库的连接。

英文:

Yes, just omit the database name from the url, and run a CREATE query. After that you can open a connection to your database.

huangapple
  • 本文由 发表于 2015年5月22日 17:59:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/30393756.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定