mysql - AutoHotKey can't load libmySQL.dll from directory -


i tried use following ahk library: http://www.autohotkey.com/board/topic/72629-mysql-library-functions/page-1

and wrote simple module based on examples, if run script, mysql error: 9999 - can't load libmysql.dll directory.

i've looked @ libraryn , part throws error:

hmodule := dllcall("loadlibrary", "str", libmysql)  if (hmodule = 0) {     this.error := 9999     this.errstr := "can't load libmysql.dll directory " libmysql     if errmsg         msgbox, 16, % "mysql error: " this.error , % this.errstr "`n`n" sql      return             } 

so guess can't find or load dll. have no idea why, i've tried replace manually , i've reinstalled mysql (connector). i've tried compile script , run (on forum saied worked him) nothing changed. idea?

is possible running unicode version of autohotkey? library seems require ansi version.


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

firemonkey - How do I make a beep sound in Android using Delphi and the API? -