|
#include "mysql.au3"
#include <Array.au3>
_MySQL_InitLibrary()
If @error Then Exit MsgBox(0, '连接MySQL', "发生未知错误")
$MysqlConn = _MySQL_Init()
$connected = _MySQL_Real_Connect($MysqlConn,"localhost","root","999999","phpwind",3306,"","0")
If $connected = 0 Then
$errno = _MySQL_errno($MysqlConn)
MsgBox(0,"Error:",$errno & @LF & _MySQL_error($MysqlConn))
If $errno = $CR_UNKNOWN_HOST Then MsgBox(0,"Error:","$CR_UNKNOWN_HOST" & @LF & $CR_UNKNOWN_HOST)
Endif
数据库连接成功
_MySQL_Query等命令可正常运行
我唯一会用的 只是修改某表某字段的内容
但对MYSQL不太了解
希望有朋友能帮忙写句获取某字段值的语句
例如 获取数据库test下的 PW表 第一行 email字段 的内容
再恳请一语句
若要指定"email"字段为"123@123.com"的一行 获取相应ID字段的内容
麻烦朋友们写两句示例 |
|