Re: [sqlite] New Information Schema Views

2019-06-06 Thread Edward Lau
Hi Keith: If there is a standard naming convention out there, we should consider adopting it. How about the naming listed in the link below:https://www.postgresql.org/docs/9.3/information-schema.html

[sqlite] New Information Schema Views

2019-06-06 Thread Keith Medcalf
This is an update to the Schema Information views that I previously posted. This version has the capability to display information for all available schema names (attached databases) simultaneously. It requires that the SQL function "eval" be available since it runs dynamically generated SQL

Re: [sqlite] SQLITE Return Exponential value in the latest version(3.28.0) rather than integer number .

2019-06-06 Thread R Smith
Hi Bhavesh, This is a common thing with 3rd party systems and engines (like SQlite) etc. One day, you made a simple query which did not specify the output specifically (or the format, or the order, or such), BUT you liked the output as it was on that day, and then possibly made your program

Re: [sqlite] [EXTERNAL] SQLITE Return Exponential value in the latest version(3.28.0) rather than integer number .

2019-06-06 Thread Jose Isaias Cabrera
I don't think he means integer, but more "the original value entered." From: sqlite-users on behalf of Hick Gunter Sent: Thursday, June 6, 2019 08:43 AM To: 'SQLite mailing list' Subject: Re: [sqlite] [EXTERNAL] SQLITE Return Exponential value in the latest

Re: [sqlite] [EXTERNAL] SQLITE Return Exponential value in the latest version(3.28.0) rather than integer number .

2019-06-06 Thread Hick Gunter
You are doing strange things. And screenshots are not supported on this mailing list. 1) There is no numeric data type in SQLite. Your declaration numeric(4) gives the column numeric affinity. SQLite will attempt to convert the value you give into an integer or a real, if such a conversion is

[sqlite] SQLITE Return Exponential value in the latest version(3.28.0) rather than integer number .

2019-06-06 Thread Bhavesh Patel
Hello SQLite Community Members, I am facing an issue with SQLite latest version(3.28.0). SQLITE Return Exponential value in the latest version(3.28.0) rather than integer number . The old version (3.6.2) return the same integer value which is inserted . Below is the screenshots of my

Re: [sqlite] SQLITE_OPEN_WAL

2019-06-06 Thread Wout Mertens
On Thu, Jun 6, 2019 at 10:17 AM Simon Slavin wrote: > On 6 Jun 2019, at 9:11am, Wout Mertens wrote: > > > I'd like to create a database in WAL mode if it doesn't exist > > Create it without the flag then execute > > PRAGMA journal_mode=WAL > Ah no, you see, the problem is that I can have

Re: [sqlite] SQLITE_OPEN_WAL

2019-06-06 Thread Simon Slavin
On 6 Jun 2019, at 9:11am, Wout Mertens wrote: > I'd like to create a database in WAL mode if it doesn't exist Create it without the flag then execute PRAGMA journal_mode=WAL The PRAGMA is harmless if the database is already in WAL mode. If you want to get fussy about it execute

Re: [sqlite] Bug in sqlite3.c

2019-06-06 Thread bhandari_nikhil
I tried "INSERT INTO ft(ft) VALUES('integrity-check')" and it also did not give any error. But the rebuild command helped solve my problem as the crashes stopped, otherwise my application was crashing at every commit operation (thanks a lot for that). Is there any command/API which can bypass