Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use API of MySql to connect to MySql database

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article introduces the knowledge about "how to use MySql API to connect MySql database". In the actual case operation process, many people will encounter such difficulties. Next, let Xiaobian lead you to learn how to deal with these situations! I hope you can read carefully and learn something!

C++ connects to MySQL databases in two ways:

C API via MySQL (decided to use this way)

You can also use MySQL++.

[Mysql++ is an officially released API in C++ designed for MySQL. Mysql++ is a re-encapsulation of Mysql's C-Api, developed and written in STL(Standard Template Language), and provides C++ developers with a set of mechanisms for manipulating databases as conveniently as operating STL containers]

2. Connector c++ via MySQL

MySQL C++ Driver implementation is based on the JDBC specification.

MySQL Connector/C++ is a MySQL connector developed by Sun Microsystems. It provides OO based programming interfaces and database drivers to operate MySQL servers. Unlike many other existing C++ interface implementations, Connector/C++ follows the JDBC specification. In other words, Connector/C++ Driver API is mainly based on Java language JDBC interface. JDBC is the Java language's standard industry interface to various databases. Connector/C++ implements most of the JDBC specification.

Learn how to use MySql API to connect to MySql database

I. Engineering settings

Point the header file path of the project to the location of mysql.h, the same file in Mysql installation directory, and point the connection library path to the location of libmysql.lib:

Specific configuration steps:

1. C/C++-> General-> Additional include directory on the project property page points to: C:\Program Files\MySQL\MySQL Server 5.1\include

2. Linker of project property page-> General-> Additional library directory points to:C:\Program Files\MySQL\MySQL Server 5.1\lib\opt.

Add libmysql.lib to linker-> input-> additional dependencies (you can also import libmysql.lib by adding #pragma comment(lib,"D:\Program Files\MySQL\MySQL Server 5.6\lib\libmysql. lib") at the beginning of the program code)

4. Copy libmysql.dll under D:\Program Files\MySQL\MySQL Server 5.6\lib to the debug folder of the project, that is, under a folder with the output file.

API for connecting MySQL and retrieving data from MySQL

Simple connection database, get database information:

#include

< windows.h>

#include

< mysql.h>

#include

< string>

#include

< iostream>

using namespace std;int main(){ const char user[] = "root"; const char pswd[] = "root"; const char host[] = "localhost"; const char table[] = "bookdb";//database name unsigned int port = 3306; MYSQL myCont; MYSQL_RES *result; MYSQL_ROW sql_row; int res; mysql_init(&myCont); if (mysql_real_connect(&myCont, host, user, pswd, table, port, NULL, 0)) { mysql_query(&myCont, "SET NAMES GBK"); //Set encoding format res = mysql_query(&myCont, "select * from bookInfo");//query if (! res) { result = mysql_store_result(&myCont); if (result) { while (sql_row = mysql_fetch_row(result))//get specific data { cout

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report