Jump to content

Recommended Posts

Posted

Have you tried anything and are you getting an error or?

 

Thanks for reply,

 

In browser I Get error 500,

in log file I Have:

Project1: 00000C70: 13:23:23:Exception : None of the dynamic libraries can be found: libmysql51.dll, libmysql50.dll, libmysql.dll

 

I am not sure if there are any special considerations for the apache server. In theory any database components should work.

 

It is Zeus database components!

Posted

This is not an isapi dll issue. The errors occur because the database components can not find the required driver libraries. These need to be bundled with your application. The Zeus documentation should contain information on how to deploy your application and which libraries you need to add.

Posted

When I make standalone server application it works correctly, but in isapi module error occurs:

Project1: 000008FC: 10:59:03:Exception : None of the dynamic libraries can be found: libmysql51.dll, libmysql50.dll, libmysql.dll

Posted

When I make standalone server application it works correctly, but in isapi module error occurs:

Project1: 000008FC: 10:59:03:Exception : None of the dynamic libraries can be found: libmysql51.dll, libmysql50.dll, libmysql.dll

 

Are the dll's located in the app-path? Then standalone server finds the dll's in its path, but in case of isapi the searchpath is the path of the internetserver (iis, apache).

  • Administrators
Posted

Thanks for reply, I solved!

I put libMysql.dll in c:\xampp\apache\bin\

 

but is it a huge dll, it takes about 5.5MB, it is just a one grid on form!

 

It depends on 3rd party DB components you use in your project. Also newer Delphi versions can create bigger exe files.

  • 2 months later...
Posted

We'd really like to help, but there is a limited amount of time we can dedicate to each reported case. Please try to create a test project yourself first.

 

 

i create VCL application/standalone server/isapi module working

but only isapi module not working.not connection mysql.

  • Administrators
Posted

It works here with Apache 2.2.

 

 

Here is my Conection String:

 

  object ADOConnection1: TADOConnection
Connected = True
ConnectionString = 
 	'Provider=MSDASQL.1;Persist Security Info=False;User ID=root;Mode' +
 	'=ReadWrite;Extended Properties="DSN=denememysql;SERVER=127.0.0.1' +
 	';UID=root;DATABASE=test;PORT=3306"'
LoginPrompt = False
Mode = cmReadWrite
Left = 616
Top = 24
 end

Posted

It works here with Apache 2.2.

 

 

Here is my Conection String:

 

  object ADOConnection1: TADOConnection
Connected = True
ConnectionString = 
 	'Provider=MSDASQL.1;Persist Security Info=False;User ID=root;Mode' +
 	'=ReadWrite;Extended Properties="DSN=denememysql;SERVER=127.0.0.1' +
 	';UID=root;DATABASE=test;PORT=3306"'
LoginPrompt = False
Mode = cmReadWrite
Left = 616
Top = 24
 end

 

in iexplorer not working

 

:(

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...