I am working on sqlite in Java. I am currently using the Xerial JDBC driver.
I can establish a connection with an existing database and perform basic operations with the database on it. But now I have a requirement when the callback should be performed when performing CRUD operations performed in the database.
I searched and found that SQLite provides data callbacks , but these callbacks are in the C programming language.
How can I do something equivalent to it in Java using the Xerial JDBC driver. ? If this is not possible with the Xerial Driver, then I welcome any other suggestion that will enable this callback function.
source
share