“ The main issue is "listening to new data in a SQL table". I wrote this code to achieve it in MSSQL (perhaps it is somehow built into postgres?): https://github.com/vippsas”
Postgres uses “publications” for this purpose. Clients can subscribe to a publication that gets updates to a given table.
Comments
“ The main issue is "listening to new data in a SQL table". I wrote this code to achieve it in MSSQL (perhaps it is somehow built into postgres?): https://github.com/vippsas”
Postgres uses “publications” for this purpose. Clients can subscribe to a publication that gets updates to a given table.