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
MySQL Embedded server!
-
swierzbicki
- Posts: 451
- Joined: Wed 19 Jan 2005 09:59
You can't connect to MySQL Embedded Server via network directly. MySQL Reference Manual says:
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.
So, MySQL Embedded Server library and application that connects to it must be on the same computer.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.
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.