Hi,
I'm writing a C++ script and part of it is to connect to an SQL Server. C++ is new to me so I'm still working my way around.
Any help would be greatly appreciated.
Many Thanks
Hi,
I'm writing a C++ script and part of it is to connect to an SQL Server. C++ is new to me so I'm still working my way around.
Any help would be greatly appreciated.
Many Thanks
how to connect c++ with sql
Simple C program that connects to MySQL Database server
#include <mysql.h>
#include <stdio.h>
main() {
MYSQL *conn;
MYSQL_RES *res;
MYSQL_ROW row;
char *server = "localhost";
char *user = "root";
char *password = "PASSWORD"; /* set me first */
char *database = "mysql";
conn = mysql_init(NULL);
/* Connect to database */
if (!mysql_real_connect(conn, server,
user, password, database, 0, NULL, 0)) {
fprintf(stderr, "%s\n", mysql_error(conn));
exit(1);
}
/* send SQL query */
if (mysql_query(conn, "show tables")) {
fprintf(stderr, "%s\n", mysql_error(conn));
exit(1);
}
res = mysql_use_result(conn);
/* output table name */
printf("MySQL Tables in mysql database:\n");
while ((row = mysql_fetch_row(res)) != NULL)
printf("%s \n", row[0]);
/* close connection */
mysql_free_result(res);
mysql_close(conn);
}
nice but too many user mistake in syntax
what about ODBC? Google will five you a quick example and explanations
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.