B4J Question java.sql.SQLNonTransientConnectionException - EnriqueGonzalez (first post) Oct 11, 2023 it seems that you are calling a sql.close somewhere before doing some more with the sql object.
With this db's you should only close sql once OR use a pool and open / close a new connection everytime is needed B4J Library SQL: Simplyfying Calling Stored Procedures - keirS Aug 16, 2018 (14 reactions) FetchOutputParameters returns the output parameters as a Map.
Microsoft SQL Server Example:
The sample code below uses the AdventureWorksLT sample database provided by Microsoft. The correct database for your SQL server version can be found here: https://github.com/Microsoft/sql-server-
I create B4J Question MySQL experts, come !! - marcick (first post) Oct 18, 2018 :confused::D
What is amazing with SQL is that any condition you have in mind can be done. Looks like there are no limits. Just have to find the sintax ... Bug? [EDIT: NO BUGS HERE] ExecQuerySingleResult (SQLite) - Mahares (first post) May 12, 2023 Where is the code for the SQL library located. Maybe we can look at it and see if the ExecSingleResult can be modified to prevent such error without knowing the content of your data in the table. B4J Tutorial jServer & SQLite [Multiple Request Stress Test] - Erel (first post) May 10, 2021 (5 reactions) Sorry to say but it is nonsense.
SQLite is a very powerful database engine which is used by many servers.
It is definitely a tool that developers should consider. Like any other tool it has its advantages and disadvantages.
Why do you need to turn each thread into an ongoing argument? No one want B4J Question KeyValueStore - Resultset not closed? - Mahares (first post) Apr 02, 2023 What is the reason to use SQl here. The OP is using KVS which uses an internal SQL database, but I don't see the need to use that SQL code at all, when you can directly access the keys in a list using: kvs.ListKeys. You and the OP seem to go back and forth on this. There must be something to it. B4J Question Query that returns only the column names that have never been evaluated - Andrew (Digitwell) (first post) May 06, 2023 (4 reactions) This is true.
This is an SQL(lite) specific problem rather than a B4X specific problem so your best answer may be found on a SQL(lite) forum.
If you do find a solution, I'd love to hear what it is. B4J Question SQL to Excel? - inakigarm (first post) Dec 13, 2016 (1 reaction) And/or jPoi library: https://www.b4x.-supports-microsoft-excel-xls-and-xlsx-workbooks.57392/ B4J Question Help with sql command with primary key - Harris (first post) Feb 05, 2018 Sqlite:
SQL1.ExecNonQuery("CREATE TABLE IF NOT EXISTS scalemast (pk INTEGER PRIMARY KEY, loadtype INTEGER, acttype INTEGER, recdate INTEGER, drvid INTEGER, trkid TEXT, trl1id TEXT, trl2id TEXT, trl3id TEXT, gross INTEGER, tare INTEGER, rectype TEXT, lat REAL, lon REAL )")
Of course, every ins B4J Question SQL query - Jorge M A (first post) Nov 16, 2019 Which Database are you using? SQLite or MS SQL? The first approach could be to review the design and include dates in indexes and establish relationships to avoid subquery using INNER JOIN. Page: 1 2 3 4 5 6 7 Powered by ColBERT |