Hi to all,
there is an example that shows this type of operation?
DataBase resident on the server (example "db.sql")
the client must be able to perform any type of query (SELECT, UPDATE, INSERT etc.) and read/show the result.
It's too complicated?
Hi, I've an idea but maybe wrong (I never used DataBase but Network.dll yes...):
On the server you get the command and you run it and finaly you send all data if available to the client with bin.Write...()
I looked the Thread "Using MySQL in Basic4PPC"....
This is an example of dataconnection:
Mysql.Open("Data Source=IPserver,Port;Initial Catalog=windip;User ID=aa;Password=1234;")
Right?
In Initial Catalog what should I put, the file name or a complet path?
Where I put The correct path of the file and how I set the UserId e Password on the device server?
Sorry but this is my first application with mysql
You should use the Network library to communicate between the devices, and send the instructions from the "client" device to the "server" device which will manage the database.
You should use the Network library to communicate between the devices, and send the instructions from the "client" device to the "server" device which will manage the database.
certainly is the best solution.
but I have a problem ...
how can I load the DataReader and the table with the object bynary (in client) when I send a "select...." to the server?