yes, i have installed MySQL ODBC driver and the problem is that, i cant run the script, because its givin the error, what ive posted above
#include <mysql.au3>
Opt("TrayIconDebug", 1)
$value1 = "testusername"
$value2 = "testpassword"
$sqlcon = _MySqlConnect ('uname', 'pass', 'db, 'domain')
If Not @error Then
_AddRecord ($sqlcon, 'account', $value1, $value2)
; $dbs = _GetDbNames($sqlcon)
; For $i in $dbs
; MsgBox(0,'',$i)
; Next
Else
MsgBox(16, "Error", "_MySqlConnect() returned @error = " & @error)
EndIf
_MySQLEnd ($sqlcon)
tryed to count db (it should work anyways, coz dun need update table) but thats not working too, no msg box appear as it should, only i got the error line in SciTE.