hi...
i use ZEOSDBO-6.6.4 , Delphi 7
what can i do to add,modify,dellet record on database in two or more computer shared?
Sharing Database ?
Moderators: gto, cipto_kh, EgonHugeist
- mdaems
- Zeos Project Manager
- Posts: 2766
- Joined: 20.09.2005, 15:28
- Location: Brussels, Belgium
- Contact:
Have a look here:
http://www.sqlite.org/faq.html#q5
Seems to me you better look for a real client/server database server instead of SQLite, but apparently it may be possible with SQLite as well by just pointing to the same file.
Something that should also work is building a single server program on the server containing the database and let all clients connect to the server process using the TProvider/TClientDataset objects. Then only one process is accessing the sqlite database.
Mark
http://www.sqlite.org/faq.html#q5
Seems to me you better look for a real client/server database server instead of SQLite, but apparently it may be possible with SQLite as well by just pointing to the same file.
Something that should also work is building a single server program on the server containing the database and let all clients connect to the server process using the TProvider/TClientDataset objects. Then only one process is accessing the sqlite database.
Mark