au3 如何操作Mysql 【已解决】
本帖最后由 haodd 于 2010-11-12 23:24 编辑如题!
百度 google
!~~ 没有心仪的答案
help文件也没有
把数据写到mysql已创建的数据库数据表中
谢谢! #include <array.au3>
#include "mysql.au3"
__MySQL_ExtractEmbeddedDLL()
_MySQL_InitLibrary()
$MysqlConn = _MySQL_Init()
;方法1 开始
;$connected = _MySQL_Real_Connect($MysqlConn,"localhost","root","asdf1234","gmsj")
;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
;MsgBox(0, "sda", "ok")
;方法1 结束
$connected = _MySQL_Real_Connect($MysqlConn, "127.0.0.1", "root", "sssss", "data")
; _MySQL_Real_Connect($MysqlConn,"服务器IP","账户","密码","数据库名称")
If $connected = 0 Then Exit MsgBox(16, 'Connection Error', _MySQL_Error($MysqlConn))
$query = "SELECT * FROM CHARACTER_SETS"
_MySQL_Real_Query($MysqlConn, $query)
$res = _MySQL_Store_Result($MysqlConn)
$fields = _MySQL_Num_Fields($res)
$rows = _MySQL_Num_Rows($res)
MsgBox(0, "data","row:"&$rows & "-" & $fields&"ok") 以上 本人亲测 可以连接查询! 回复 2# haodd
不能打开"mysql.au3",呵呵 來學習的~ 謝謝 {:face (356):} 保存了 谢谢 看看是不是我要的。。。 好东西啊。存起来先。 mysql.au3是用户函数UDF,你需要拷贝到UserInclude下,然后include才行。 保存了 谢谢 good{:face (356):} 留个脚印,学习。。。。。。。。。。。。。。 {:face (396):} 为啥mysql'的操作看着都很痛苦呢 本帖最后由 ac5474012 于 2013-6-5 09:34 编辑
报错:"C:\Documents and Settings\guoji\My Documents\1.au3"(3,27) : error: _MySQL_ExtractEmbeddedDLL(): 未定义的函数.
_MySQL_ExtractEmbeddedDLL()
~~~~~~~~~~~~~~~~~~~~~~~~~~^
C:\Documents and Settings\guoji\My Documents\1.au3 - 1 错误, 0 警告我放入了支持
页:
[1]
2