MySQL Embedded server!

Discussion of open issues, suggestions and bugs regarding MyDAC (Data Access Components for MySQL) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
mikrodidakt
Posts: 20
Joined: Fri 05 Aug 2005 12:20
Location: Sweden

MySQL Embedded server!

Post by mikrodidakt » Sun 18 Jun 2006 20:26

Hi!
I am trying to use the mysql embedded server with the MyDac components
but I am having some problems to find information of how to do this on the web. If u know any link that could help me pleas let me know.
I am interseted in both how to use mysql embedded server and how to use the ptoperties of the TMyEmbConnection component.

Thanks

swierzbicki
Posts: 451
Joined: Wed 19 Jan 2005 09:59

Post by swierzbicki » Mon 19 Jun 2006 05:46

Have you looked at the faq page ?

http://crlab.com/forums/viewtopic.php?t=1787

Antaeus
Posts: 2098
Joined: Tue 14 Feb 2006 10:14

Post by Antaeus » Mon 19 Jun 2006 08:08

You can't connect to MySQL Embedded Server via network directly. MySQL Reference Manual says:
You cannot connect to an embedded server from an outside process with sockets or TCP/IP. However, you can connect to an intermediate application, which in turn can connect to an embedded server on the behalf of a remote client or outside process.
So, MySQL Embedded Server library and application that connects to it must be on the same computer.
More information on how to use MySQL Embedded Server you can find in MyDAC Help. Also you can find demo project named Embedded in MyDAC demo folder.

Post Reply