Hi guys! Short description of my problem. 1) Created a DLL. It is supposed to make a MYSQL connection and to get some values. They are just displayed in MsgBox-es. Database name: "menagerie". Table name: "pet". Here's the code: #include <stdio.h>
#include <Windows.h>
#include <mysql.h>
#include <atlstr.h>
#include <string.h>
extern "C"
{
__declspec(dllexport) void DisplayHelloFromDLL(char SERVER_NAME[80], char DB_USER[80], char DB_USERPASS[80], char DB_NAME[80])
{
MYSQL mysql;
MYSQL_RES *res;
MYSQL_ROW row;
MYSQL *connection;
mysql_init(&mysql);
connection = mysql_real_connect(&mysql, SERVER_NAME, DB_USER, DB_USERPASS, DB_NAME, 0, 0, 0);
if (connection == NULL)
{
int msgboxID = MessageBox(NULL, (LPCWSTR)L"Error connecting MySQL!",
(LPCWSTR)L"MySQL Test", MB_ICONINFORMATION | MB_OKCANCEL | MB_DEFBUTTON2);
}
else
{
int msgboxID = MessageBox(NULL, (LPCWSTR)L"Connection successful!",
(LPCWSTR)L"MySQL Test", MB_ICONINFORMATION | MB_OKCANCEL | MB_DEFBUTTON2);
if (!(mysql_query(connection, "SELECT name FROM menagerie.pet p;")))
{
res = mysql_use_result(connection);
while ((row = mysql_fetch_row(res)))
{
int msgboxID = MessageBox(NULL, (CString)(row[0]),
(LPCWSTR)L"MySQL Test", MB_ICONINFORMATION | MB_OKCANCEL | MB_DEFBUTTON2);
}
mysql_free_result(res);
}
else
{
int msgboxID = MessageBox(NULL, (CString)(mysql_error(&mysql)),
(LPCWSTR)L"MySQL Test", MB_ICONINFORMATION | MB_OKCANCEL | MB_DEFBUTTON2);
}
}
mysql_close(&mysql);
int msgboxID3 = MessageBox(NULL, (LPCWSTR)L"Connection closed",
(LPCWSTR)L"MySQL Test", MB_ICONINFORMATION | MB_OKCANCEL | MB_DEFBUTTON2);
}
} 2) And this is the Autoit program: #include <GuiConstantsEx.au3>
; GUI
GuiCreate("Sample GUI", 290, 250)
; Button
$buton = GUICtrlCreateButton("Connect to DB!", 30, 75)
GUISetState()
Func test()
$resultDll = DllCall("MyDll.dll", "int", "DisplayHelloFromDLL", "str", "localhost", "str", "user", "str", "passwd", "str", "menagerie")
If @error Then
SetError(1)
MsgBox(0, "", "Error opening dll")
Else
MsgBox(0, "", "Success!")
EndIf
EndFunc
; WHILE PROGRAM IS RUNNING
While 1
$msg = GUIGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
Case $msg = $buton
test()
EndSelect
WEnd THE PROBLEM: It works fine, it displays all the values, but at the end, after showing "Connection closed", I get (Visual Studio Just-In-Time Debugger message) An unhandled win32 exception occurred in Autoit3.exe [3904]. I'm asked to choose between debuggers. After selecting one and clicking on Yes, I get: Unhandled exception at 0x00373034 in Autoit3.exe. Access violation reading location 0x00373034. So for some reasons I can not pass to the next line after Dllcall: If @error Then
SetError(1)
MsgBox(0, "", "Error opening dll")
etc. Do you have any idea what's wrong?