Browse Source

+ Removed debug statement

git-svn-id: trunk@3163 -
michael 19 years ago
parent
commit
439f1401fe
1 changed files with 0 additions and 2 deletions
  1. 0 2
      packages/base/mysql/mysql.inc

+ 0 - 2
packages/base/mysql/mysql.inc

@@ -1499,7 +1499,6 @@ begin
   Result:=InitialiseMySQL(Mysqllib);
 end;
 
-Function dlerror : pchar; cdecl; external;
 
 Function InitialiseMysql(Const LibraryName : String) : Integer;
 
@@ -1510,7 +1509,6 @@ begin
     MysqlLibraryHandle := loadlibrary(LibraryName);
     if (MysqlLibraryHandle=nilhandle) then
       begin
-      writeln(dlerror);
       Raise EInOutError.CreateFmt(SLoadFailed,[LibraryName]);
       end;
     Inc(RefCount);