Wie DLLs im Borland C++ Builder einbinden?

Ich möchte die mySQL-DLL libmySQL.dll im Borland C+±Builder einbinden. Im Source habe ich folgende Zeilen eingegeben:

LoadLibrary( „libmySQL.dll“ );

Beim Ausführen der EXE kommt folgende Meldung:
LDR: Automatic DLL Relocation in Project1.exe
LDR: Dll libmySQL.dll base 10000000 relocated due to collision with C:\WINNT\System32\SBXCMDRT.DLL

Füge ich die Zeile folgende Zeile hinzu:

mysql_init(MYSQL *mysql);

kommt folgende Compiler-Meldung: „Call to undefined function ‚mysql_init‘“

Was mache ich falsch?