I have the following question:
I am using jSql to work with Oracle database. Connects successfully. Even a successful refill the table with data.
How to run a query for Insert record.
Do I always have to re-connect to the Oracle database for each query?
Conn string:
What is the best technique to establish connections with databases?
Is it good to connect to the database at application startup? Does the connection is established at the request button?
I am using jSql to work with Oracle database. Connects successfully. Even a successful refill the table with data.
How to run a query for Insert record.
Do I always have to re-connect to the Oracle database for each query?
Conn string:
B4X:
conn.InitializeAsync("conn", "oracle.jdbc.driver.OracleDriver", _
"jdbc:oracle:thin:@//localhost:1521/xe","hr","xxxx")
What is the best technique to establish connections with databases?
Is it good to connect to the database at application startup? Does the connection is established at the request button?