I'm doing a small project including a connection to sqlite. I write to two tables with a one to many relation.
The last batch to the second table won't get written unless ...
I am trying to do some querys to a database I created but I am having problems connecting to it:
enter code here import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class GestorBase{
private ...
I am connecting with SQlite using JDBC driver. I want to check from SQLite command prompt how many connections are open within the database engine. Can any one tell me how ...