В том то и дело что я положил все файлы с архива включая dll в папку include дак вот скрипт не конектится к базе:
Код:
#include <array.au3>
#include "mysql.au3"
_MySQL_InitLibrary()
If @error Then Exit MsgBox(0, '', "")
$MysqlConn = _MySQL_Init()
$connected = _MySQL_Real_Connect($MysqlConn, "ХОСТ","ПОЛЬЗОВАТЕЛЬ","ПАРОЛЬ","БД")
If $connected = 0 Then Exit MsgBox(16, 'Connection Error', _MySQL_Error($MysqlConn))
$query = "SELECT * FROM users WHERE yam=`" & _MySQL_RealEsacepString($yam) & "` AND password=`" & _MySQL_RealEsacepString($pass) & "`"
_MySQL_Real_Query($MysqlConn, $query)
;------------------------------------------------------
;------------------------------------------------------
$res = _MySQL_Store_Result($MysqlConn)
$fields = _MySQL_Num_Fields($res)
; Abfrage freigeben
_MySQL_Free_Result($res)
; Verbindung beenden
_MySQL_Close($MysqlConn)
; MYSQL beenden
_MySQL_EndLibrary()
Выдаёт вот это:
MsgBox(0, '', "")