|
本帖最后由 liangxm 于 2014-1-13 17:12 编辑
在测试mysql脚本,发现好像没有mysql.au3,一堆报错,下了最新的AUTOIT_SVN R1003,发现include里面也没有,有没有哪位有的,给我一发,3q~
#include "mysql.au3"
#include <Array.au3>
__MySQL_ExtractEmbeddedDLL()
_MySQL_InitLibrary()
If @error Then Exit MsgBox(0, '', "could not init MySQL")
Global $MysqlConn = _MySQL_Init()
Database()
_MySQL_Close($MysqlConn)
_MySQL_EndLibrary()
Func DATABASE()
$Pass = "andrew"
$connected = _MySQL_Real_Connect($MysqlConn, "10.2.49.70", "root", $Pass)
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)
_MySQL_Close($MysqlConn)
_MySQL_EndLibrary()
Exit
EndIf
error: $CR_UNKNOWN_HOST: 未声明的全局变量.
warning: $MYSQL_SUCCESS: 使用前并未进行声明.
error: __MySQL_ExtractEmbeddedDLL(): 未定义的函数. |
|