Topic: Is it possible to have the sqlite.dll on a server?

Is it possible to create a database, where I put my sqlite.dll on a server so that more than one user can access the same data?

Re: Is it possible to have the sqlite.dll on a server?

You can use your project for multiple users using LAN network (shared folder)
just place your database file (sqlite.db) in the shared folder, and set up path to the sqlite.db file using settings:
Options > Settings > Database location


also you can using Remote Desktop Connection (LAN and Internet)

Dmitry.

Re: Is it possible to have the sqlite.dll on a server?

DriveSoft wrote:

You can use your project for multiple users using LAN network (shared folder)
just place your database file (sqlite.db) in the shared folder, and set up path to the sqlite.db file using settings:
Options > Settings > Database location


also you can using Remote Desktop Connection (LAN and Internet)


It works thank you!

Oh and btw, is it possible to change the application "info" page? Like version and language? And change the application icon to something more suitable?

Re: Is it possible to have the sqlite.dll on a server?

You can hide menu item "About"
Form1.mniAbout.Visible := False;


then create own a form for About page.


Chage the application icon is not supported.

Dmitry.