vc 6 mysql使用c 介面訪問mysql

jidongzheng發表於2010-04-14

基本開發就不講了,以下主要是出現的幾個問題,提供一下解決方法:

1. 找不到c:mysqlshareindex?.conf

Some mysql struct information (size and offset):
net: 292 0
host: 4 296
port: 4 400
protocol_version: 4 412
thread_id: 4 392
affected_rows: 8 368
packet_length: 4 396
status: 4 512
fields: 4 332
field_alloc: 32 336
free_me: 1 516
options: 84 428

File 'c:mysqlsharecharsets?.conf' not found (Errcode: 2)
Character set '#33' is not a compiled character set and is not specified in the
'c:mysqlsharecharsetsIndex' file
Can't connect to the mysql server on port 3306 !
Press any key to continue

這主要是字符集的問題,需要設定連線的資料庫的字符集

2.協議錯誤,無法連線.

修改設定user 表password為old_password('dddd')

3.中文問題

if(mysql_query(&myData, "set names gbk")){
fprintf(stderr, "%d: %sn",
mysql_errno(&myData), mysql_error(&myData));
}

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/197458/viewspace-1032856/,如需轉載,請註明出處,否則將追究法律責任。

相關文章