gpt4 book ai didi

mysql - 错误 : non-standard import "github.com/go-sql-driver/mysql" in standard package

转载 作者:行者123 更新时间:2023-12-04 16:08:21 29 4
gpt4 key购买 nike

我想使用 go 语言从我的数据库中检索一些数据。这是我在文件 main.go 中的代码的开头

package main

import (
_ "github.com/go-sql-driver/mysql"
"database/sql"
"fmt"
)

... *(the rest code)*

但是,我得到了错误:

C:\Go\src\iwantto\main.go:6:2: non-standard import "github.com/go-sql-driver/mysql" in standard package "iwantto"

我已经在谷歌和论坛上做了一些研究,但没有太多关于导入的内容。或者,真的是go语言本身的bug吗?

最佳答案

当你需要你的代码做一些可能已经被其他人(在 Github 或其他地方的包中)实现的事情时,你应该在你的文件夹中初始化 go mod 文件。

为了便于理解,只需使用 example.com/module。

go mod init example.com/module

添加新的模块要求和总和。

go mod tidy

运行你的程序

go run .

更多详情:https://golang.org/doc/tutorial/getting-started

关于mysql - 错误 : non-standard import "github.com/go-sql-driver/mysql" in standard package,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47577385/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com