- 论坛徽章:
- 0
|
我在c+mysql程序里执行 \. 总是报错 error 134637364: s
int main(int argc, char *argv[])
{
MYSQL my_connection;
int res;
mysql_init(&my_connection);
char buf[513];
sprintf(buf,"\\.source /root/lu/cr.sql");
printf(buf);
/*mysql_real_connect(&mysql,host,user,passwd,dbname,0,NULL,0) == NULL)*/
if (mysql_real_connect(&my_connection, "localhost", "root", "","mysql",0,NULL,CLIENT_FOUND_ROWS)) {
printf("Connection success\n");
res = mysql_query(&my_connection, buf);
if (!res) {
printf(" %lu rows\n",(unsigned long)mysql_affected_rows(&my_connection)); /*里头的函数返回受表中影响的行数*/
} else {
fprintf(stderr, " error %d: s\n",mysql_errno,(&my_connection),mysql_error(&my_connection));
}
mysql_close(&my_connection);
} else {
fprintf(stderr, "Connection failed\n");
if (mysql_errno(&my_connection)) {
fprintf(stderr, "Connection error %d: %s\n",
mysql_errno(&my_connection), mysql_error(&my_connection));
}
}
return EXIT_SUCCESS;
} |
|