最近项目需要,需要操作access,以前是用VC++ OLE访问,网络用ACE库,感觉很庞大...决定用go试试 网上用的最多的就是这个https://github.com/weigj/go-odbc 安装方式如下: ODBC database driver for Go Install: cd $GOPATH/src git clone git://github.com/weigj/go-odbc.git odbc cd odbc go install 测试时碰到好多坑..... 第1次当运行
type TA struct { Id int64 `db:"id"` } type TB struct { Id int64 `db:"id"` } type TC struct { TA TB } 如上的sql和结构体, 当查询sql,用TC结构体封装时, 有两个id字段, 那么数据库中id的值是在TB的id中 如果TC的结构体是 type TC struct { TB TA } 这样, 那么id的值就是在TA中