[sqlite] Sqlite incompatibility with Postgres

2016-05-13 Thread da...@dandymadeproductions.com
> I used to know SQL92 very well. There's no facility for doing anything > like LIMIT or OFFSET in it. You had to use your programming language to > work your way through all the results and skip the ones you didn't want. > > It is because there was no standard for this that each of the big SQL >

[sqlite] Sqlite incompatibility with Postgres

2016-05-12 Thread da...@dandymadeproductions.com
> It's a minor point, but can someone confirm that: > > Postgres accepts (but Sqlite does not) > LIMIT ALL > LIMIT ALL OFFSET nnn > OFFSET nnn > > Sqlite accepts (but Postgres does not): > LIMIT -1 OFFSET nnn > LIMIT -1 > > These all have the same meaning of no limit, but there is no common > groun

[sqlite] SQLite Pronunciation

2016-03-17 Thread da...@dandymadeproductions.com
> On 3/16/16, Daniel Telvock wrote: > >> I was at the Investigative Reporters and Editors Conference last week >> and the presenter for SQLite courses 1 and 3 said that it is actually >> pronounced SQ Lite. Even he thought that was odd considering SQL is a >> term or acronym. > > I wrote SQLite, a

[sqlite] SQLite Pronunciation

2016-03-16 Thread da...@dandymadeproductions.com
Hello, Please grant me some leeway here since as someone who has not been in an academic school for years and is mainly self taught. I have Mainly deriving information from reading manuals and occasionally viewing some videos. Maybe I'm wrong, but according to Wikepedia SQLite appears to be prono

[sqlite] Exporting

2015-12-07 Thread da...@dandymadeproductions.com
> On 12/6/15, Thomas Morris wrote: > >> I recently took over a Java based application that has SQLite embedded >> and now I need to export the database into a CSV format. Reading >> online, I have found that using (dot)mode csv, or any (dot) command is >> not possible when SQLite is embedded, sim

[sqlite] Dont Repeat Yourself (DRY) and SQLite

2015-11-25 Thread da...@dandymadeproductions.com
> On 25 Nov 2015, at 2:23pm, Domingo Alvarez Duarte wrote: > >> This way we repeat the string everywhere then it's not DRY ! > > You know, I think you're the first person to mention DRY here. I had to look it up. > > > > For some reason it s

[sqlite] convert a PostgreSQL to sqlite

2015-07-06 Thread da...@dandymadeproductions.com
c.buhtz wrote: > Is there a way (free, open source, Ubuntu) to convert a > PostgreSQL-database with data in it to a sqlite database? Hello, 1. Download the free open source Java application MyJSQLView. http://myjsqlview.com/download.html 2. Insure the PostgreSQL JDBC driver is installed in t

[sqlite] MyJSQLView Version 7.03 Released

2015-06-15 Thread da...@dandymadeproductions.com
The MyJSQLView project is pleased to release v7.03 to the public. The release is to fix the plugin management tool proxy setting property. Remote HTTP repositories can not be created or loaded. The release also is for archiving purposes to finalize the last release before the move of the code versi

[sqlite] MyJSQLView Version 7.02 Released

2015-05-17 Thread da...@dandymadeproductions.com
The MyJSQLView project is pleased to release v7.02 to the public. The release is mainly oriented around bringing the application into compliance with Java 1.7. In that vein considerable enthusiasm has been generated in enabling the JavaFX framework for plugins. The graphic and media enhancements in

[sqlite] PRAGMA index_list() SQLException

2015-03-21 Thread da...@dandymadeproductions.com
> On 2015-03-21 06:27 AM, danap at dandymadeproductions.com wrote: >> Hello, >> >> PRAGMA index_list(table-name) >> >> In Sqlite's past history has PRAGMA index_list(table-name) returned a >> SQLException indicating no ResultSet or a non-empty ResultSet that may >> throw an exception on accessing t

[sqlite] PRAGMA index_list() SQLException

2015-03-21 Thread da...@dandymadeproductions.com
Hello, PRAGMA index_list(table-name) In Sqlite's past history has PRAGMA index_list(table-name) returned a SQLException indicating no ResultSet or a non-empty ResultSet that may throw an exception on accessing the fields in the normal way? {rs.getInt(1), rs.getString(2), rs.getInt(3)} danap.