in reply to Simultaneous access to the tk script

SQLite may support limited concurrent access, but it is intended to be embedded. Better switch to a "real" database like PostgreSQL that really supports concurrent access. If you use DBI, it's not much more than changing the arguments of DBI->connect(). And of course, installing PostgreSQL or find another existing database server (almost everyone is supported by DBI) where you can an account.

See also Re^2: What is your favourite Linux or cross-platform database?, Re^2: Perl and Database, and Re^2: What is the best Perl library to use to connect and access MSSQL2008 Database from winXP PC?.

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)

Replies are listed 'Best First'.
Re^2: Simultaneous access to the tk script
by Anonymous Monk on Jun 03, 2018 at 17:28 UTC

    Hi,

    thank you very much for your reply. I thought about using "real" database. However the security standard here makes it highly unlikely that I would be allowed to start another server such as PostgreSQL. The main big software in the company uses MS SQL Server, it is already there, however it is equally unlikely that they let me create a new database and in any case it would not be a writing access.

Re^2: Simultaneous access to the tk script
by Anonymous Monk on Jun 01, 2018 at 22:42 UTC