testsql.c:
/* testsql.c ** an example to use mysql c api
** author: coon xu
** date: 05 nov 2004
*/
#include
#include
int main()
else
printf("connected.../n");
// get the result from the executing select query
query = "select * from t1";
t = mysql_real_query(&mysql,query,(unsigned int) strlen(query));
if (t)
else
printf("[%s] made.../n", query);
res = mysql_store_result(&mysql);
while(row = mysql_fetch_row(res))
printf("/n");
} printf("mysql_free_result.../n");
mysql_free_result(res); //free result after you get the result
sleep(1);
// execute the insert query
query = "insert into t1(id, name) values(3, 'kunp')";
t = mysql_real_query(&mysql,query,(unsigned int) strlen(query));
if (t)
else
printf("[%s] made.../n", query);
mysql_close(&mysql);
return 0;
}
PHP連線mysql例子
對於熟悉做 的人來說,要想 做成動態的,肯定要有資料庫的支援,利用特定的指令碼連線到資料庫,從資料庫中提取資料 向資料庫中新增資料 刪除資料等。這裡我通過乙個例項來說明如何用php連線到資料庫的。我準備建立乙個簡單的通訊錄,資料庫的名字叫txl,資料庫只有乙個表叫personal info,表中有5...
PHP連線mysql例子
對於熟悉做 的人來說,要想 做成動態的,肯定要有資料庫的支援,利用特定的指令碼連線到資料庫,從資料庫中提取資料 向資料庫中新增資料 刪除資料等。這裡我通過乙個例項來說明如何用php連線到資料庫的。我準備建立乙個簡單的通訊錄,資料庫的名字叫txl,資料庫只有乙個表叫personal info,表中有5...
mysql左連線自連線例子
連線就是將兩個表按照某個公共欄位來拼成乙個大表。左連線就是在做連線是以左邊這個表為標準,來遍歷右邊的表。左連線,自連線 select from test visit t1 left join test visit t2 on t1.uid t2.uid結果 使用者訪問記錄 問題 查出看了湖南衛視但沒...