Created
August 28, 2013 13:14
-
-
Save hoterran/6365915 to your computer and use it in GitHub Desktop.
mysql api example, include store_result, use_result, stmt, server cursor , fetch row setting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <mysql.h> | |
#include <unistd.h> | |
#include <stdlib.h> | |
#include <string.h> | |
int main (int argc, char *argv[]) { | |
MYSQL *mysql; | |
MYSQL_RES *result; | |
MYSQL_ROW row; | |
my_bool reconnect = 0; | |
MYSQL_STMT *stmt; | |
MYSQL_BIND bind[1]; | |
MYSQL_BIND bResult[1]; | |
unsigned long length[1]; | |
int int_data; | |
mysql = mysql_init(NULL); | |
mysql_options(mysql, MYSQL_OPT_RECONNECT, &reconnect); | |
mysql_real_connect(mysql, "10.250.7.14", "test", "test", "test", 3306, NULL, 0); | |
mysql_query(mysql, "drop table test2"); | |
mysql_query(mysql, "create table test2(n int, m int)"); | |
mysql_query(mysql, "insert into test2 values (1,2), (1,3), (1,4), (1,5)"); | |
char *normalSql = "select m from test2 where n = 1"; | |
// 1. normal buffer | |
mysql_query(mysql, normalSql); | |
result = mysql_store_result(mysql); | |
while(row = mysql_fetch_row(result)) { | |
printf("1 - %d\n", atoi(row[0])); | |
} | |
mysql_free_result(result); | |
// 2. normal unbuffer | |
mysql_query(mysql, normalSql); | |
result = mysql_use_result(mysql); | |
while(row = mysql_fetch_row(result)) { | |
printf("2 - %d\n", atoi(row[0])); | |
} | |
mysql_free_result(result); | |
char *stmtSql = "select m from test2 where n = ?"; | |
//3. stmt buffer | |
stmt = mysql_stmt_init(mysql); | |
mysql_stmt_prepare(stmt, stmtSql, strlen(stmtSql)); | |
memset(bind, 0, sizeof(bind)); | |
bind[0].buffer_type= MYSQL_TYPE_LONG; | |
bind[0].buffer= (char *)&int_data; | |
mysql_stmt_bind_param(stmt, bind); | |
memset(bResult, 0, sizeof(bResult)); | |
bResult[0].buffer_type= MYSQL_TYPE_LONG; | |
bResult[0].buffer= (char *)&int_data; | |
mysql_stmt_bind_result(stmt, bResult); | |
int_data= 1; | |
mysql_stmt_execute(stmt); | |
mysql_stmt_store_result(stmt); | |
while(!mysql_stmt_fetch(stmt)) { | |
printf("3 - %d \n", int_data); | |
} | |
mysql_stmt_close(stmt); | |
// 4. stmt unbuffer | |
stmt = mysql_stmt_init(mysql); | |
mysql_stmt_prepare(stmt, stmtSql, strlen(stmtSql)); | |
memset(bind, 0, sizeof(bind)); | |
bind[0].buffer_type= MYSQL_TYPE_LONG; | |
bind[0].buffer= (char *)&int_data; | |
mysql_stmt_bind_param(stmt, bind); | |
memset(bResult, 0, sizeof(bResult)); | |
bResult[0].buffer_type= MYSQL_TYPE_LONG; | |
bResult[0].buffer= (char *)&int_data; | |
mysql_stmt_bind_result(stmt, bResult); | |
int_data= 1; | |
mysql_stmt_execute(stmt); | |
while(!mysql_stmt_fetch(stmt)) { | |
printf("4 - %d \n", int_data); | |
} | |
mysql_stmt_close(stmt); | |
// 5. stmt server cursor default | |
stmt = mysql_stmt_init(mysql); | |
mysql_stmt_prepare(stmt, stmtSql, strlen(stmtSql)); | |
unsigned long type = (unsigned long) CURSOR_TYPE_READ_ONLY; | |
mysql_stmt_attr_set(stmt, STMT_ATTR_CURSOR_TYPE, (void*) &type); | |
memset(bind, 0, sizeof(bind)); | |
bind[0].buffer_type= MYSQL_TYPE_LONG; | |
bind[0].buffer= (char *)&int_data; | |
mysql_stmt_bind_param(stmt, bind); | |
memset(bResult, 0, sizeof(bResult)); | |
bResult[0].buffer_type= MYSQL_TYPE_LONG; | |
bResult[0].buffer= (char *)&int_data; | |
mysql_stmt_bind_result(stmt, bResult); | |
int_data= 1; | |
mysql_stmt_execute(stmt); | |
while(!mysql_stmt_fetch(stmt)) { | |
printf("5 - %d \n", int_data); | |
} | |
mysql_stmt_close(stmt); | |
// 6. stmt server cursor setting | |
stmt = mysql_stmt_init(mysql); | |
mysql_stmt_prepare(stmt, stmtSql, strlen(stmtSql)); | |
type = (unsigned long) CURSOR_TYPE_READ_ONLY; | |
mysql_stmt_attr_set(stmt, STMT_ATTR_CURSOR_TYPE, (void*) &type); | |
unsigned long prefetch_rows = 2; | |
mysql_stmt_attr_set(stmt, STMT_ATTR_PREFETCH_ROWS, (void*) &prefetch_rows); | |
memset(bind, 0, sizeof(bind)); | |
bind[0].buffer_type= MYSQL_TYPE_LONG; | |
bind[0].buffer= (char *)&int_data; | |
mysql_stmt_bind_param(stmt, bind); | |
memset(bResult, 0, sizeof(bResult)); | |
bResult[0].buffer_type= MYSQL_TYPE_LONG; | |
bResult[0].buffer= (char *)&int_data; | |
mysql_stmt_bind_result(stmt, bResult); | |
int_data= 1; | |
mysql_stmt_execute(stmt); | |
while(!mysql_stmt_fetch(stmt)) { | |
printf("6 - %d \n", int_data); | |
} | |
mysql_stmt_close(stmt); | |
mysql_close(mysql); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for your example code! Its a great help!