Go language How to manipulate an Access database through ODBC _golang

Source: Internet
Author: User

The example in this article describes how the go language operates an Access database through ODBC. Share to everyone for your reference. Specifically as follows:

Here you need to use the GO-ODBC library, download the address: HTTPS://GITHUB.COM/WEIGJ/GO-ODBC

Copy Code code as follows:
Package main;
Import (
"FMT"
"Database/sql"
_ "Odbc/driver"
)
Func Main () {
Conn,err: = sql. Open ("ODBC", "Driver={microsoft Access driver (*.mdb)};d Bq=d:\\test.mdb");
if (Err!=nil) {
Fmt. PRINTLN ("Connecting Error");
Return
}
Defer Conn. Close ();
Stmt,err: = conn. Prepare ("SELECT * from Test");
if (Err!=nil) {
Fmt. Println ("Query Error");
Return
}
Defer stmt. Close ();
Row,err: = stmt. Query ();
If Err!=nil {
Fmt. Println ("Query Error");
Return
}
Defer row. Close ();
For row. Next () {
var id int;
var name string;
If err: = row. Scan (&id,&name); Err==nil {
Fmt. Println (Id,name);
}
}
Fmt. Printf ("%s\n", "Finish");
Return
}

I hope this article will help you with your go language program.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.