Since version 4.16.0.5037 O&K Print Watch supports the use of PostgreSQL as a database.
Required components:
Creating a user:
createuser -U postgres --interactive --pwprompt
grant all privileges on database PRNWATCH_DB to prnwatch_user; alter default privileges for role postgres grant all on tables to prnwatch_user;
Creating a database:
psql -U postgres
Create database PRNWATCH_DB with owner = prnwatch_user;
psql -d PRNWATCH_DB -U prnwatch_user
\i с:/path_to_script/postgresql.sql;
Set up the connection:
Provider=MSDASQL;Driver={PostgreSQL ODBC Driver(UNICODE)};Server=localhost;Port=5432;Database=PRNWATCH_DB;UID=prnwatch_user;PWD=prnwatch_pwd
Restart the O&K Print Watch Service if it has already been installed. Or start installation and select "Use current O&K Print Watch database settings".:
host=HOSTNAME_POSTGRESQL port=5432 dbname=PRNWATCH_DB user=prnwatch_user password=prnwatch_password
PostgreSQL
systemctl restart printwatch