[sqlite] Exporting

2015-12-07 Thread Thomas Morris
One thing that I am going to try to do is, download sqlite and then install in on a standalone laptop. I would then have to save the database to a disc and extract it onto the laptop. Not the most ideal situation, but hopefully it works. Thomas > On Dec 7, 2015, at 12:41 PM, danap at

[sqlite] Exporting

2015-12-07 Thread Robert W.Mills (Phoenix)
uftrag von > Thomas Morris > Gesendet: Sonntag, 06. Dezember 2015 19:44 > An: sqlite-users at mailinglists.sqlite.org > Betreff: [sqlite] Exporting > > I recently took over a Java based application that has SQLite embedded and > now I need to export the database into

[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,

[sqlite] Exporting

2015-12-07 Thread Hick Gunter
sers-bounces at mailinglists.sqlite.org [mailto:sqlite-users-bounces at mailinglists.sqlite.org] Im Auftrag von Thomas Morris Gesendet: Sonntag, 06. Dezember 2015 19:44 An: sqlite-users at mailinglists.sqlite.org Betreff: [sqlite] Exporting I recently took over a Java based application that has SQL

[sqlite] Exporting

2015-12-06 Thread Simon Slavin
If you cannot run any program apart from the ones already installed then your only option is to copy the database file to another computer. - Simon > On 6 Dec 2015, at 8:35 p.m., Thomas Morris wrote: > > Unfortunately, the application is required. I am working on a government > network

[sqlite] Exporting

2015-12-06 Thread Jim Callahan
Copying the file to another computer would likely work; except if the application encrypted the data. Jim On Sun, Dec 6, 2015 at 5:22 PM, Simon Slavin wrote: > If you cannot run any program apart from the ones already installed then > your only option is to copy the database file to another

[sqlite] Exporting

2015-12-06 Thread Thomas Morris
Unfortunately, the application is required. I am working on a government network and I cannot install sqlite, I can just run it through the application. I actually do not even access to use the command prompt to initialize the sqlite shell. Thomas Morris > On Dec 6, 2015, at 3:29 PM, Richard

[sqlite] Exporting

2015-12-06 Thread Richard Hipp
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, simply due

[sqlite] Exporting

2015-12-06 Thread Thomas Morris
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, simply due to the (dot) commands being for use

[sqlite] Exporting

2015-12-06 Thread Jeff Steinkamp
In java it is a simple matter of reading in the data using a SQL statement to fetch all the data, then using a standard Java CSVWriter class to export that data in the proper format. -- Jeff K. Steinkamp (N7YG) Tucson, AZ Scud Missile Coordinates N32.2319 W110.8477

Re: [sqlite] Exporting database to CSV file

2009-01-07 Thread Brandon, Nicholas (UK)
. > > Is there a way to do this entirely through php? I would like > to make a query on a table and write the results to a csv > file so that the user can have the option of downloading it. > Has anyone ever done something similar to this? > > Thanks > I believe there is a function like

Re: [sqlite] Exporting database to CSV file

2009-01-07 Thread Jonathon
Thanks for the replies... Actually, it seems my requirements have changed.. Is there a way to do this entirely through php? I would like to make a query on a table and write the results to a csv file so that the user can have the option of downloading it. Has anyone ever done something similar

Re: [sqlite] Exporting database to CSV file

2009-01-06 Thread Alexey Pechnikov
Hello! В сообщении от Tuesday 06 January 2009 15:33:42 Sylvain Pointeau написал(а): > The import has the big limitation to not be able to import the file when a > field is on multiple lines.I don't know if this is the same for the > export... See virtualtext extension from spatialite project.

Re: [sqlite] Exporting database to CSV file

2009-01-06 Thread Sylvain Pointeau
The import has the big limitation to not be able to import the file when a field is on multiple lines.I don't know if this is the same for the export... Cheers, Sylvain On Tue, Jan 6, 2009 at 11:08 AM, MikeW wrote: > Jonathon writes: > > > > > Awesome.

Re: [sqlite] Exporting database to CSV file

2009-01-06 Thread MikeW
Jonathon writes: > > Awesome. Thanks for the quick reply Deech :) > > J "Awesome" ? You must be easily impressed/scared ! ;-) MikeW ___ sqlite-users mailing list sqlite-users@sqlite.org

Re: [sqlite] Exporting database to CSV file

2009-01-05 Thread Jonathon
Awesome. Thanks for the quick reply Deech :) J On Mon, Jan 5, 2009 at 2:34 PM, aditya siram wrote: > Open the sqlite database using: > > sqlite3 database.sqlite > >> .mode csv > >> .output yourfilename > >> your-sql -query > > -deech > > On Mon, Jan 5, 2009 at 4:21 PM,

Re: [sqlite] Exporting database to CSV file

2009-01-05 Thread aditya siram
Open the sqlite database using: > sqlite3 database.sqlite >> .mode csv >> .output yourfilename >> your-sql -query -deech On Mon, Jan 5, 2009 at 4:21 PM, Jonathon wrote: > Hello all, > > I am interested in exporting a particular table to a CSV file. I've > browsed >

[sqlite] Exporting database to CSV file

2009-01-05 Thread Jonathon
Hello all, I am interested in exporting a particular table to a CSV file. I've browsed google for a bit, but all I could find is third party programs. I was hoping this functionality was provided in sqlite and that it was super duper fast :) Thanks! J

Re: [sqlite] Exporting to MySQL?

2008-10-08 Thread Kees Nuyt
On Wed, 08 Oct 2008 13:14:43 +0200, Gilles Ganault <[EMAIL PROTECTED]> wrote in General Discussion of SQLite Database : >Hello > >I'm no MySQL expert, and am having some syntax errors when trying to >export data from SQLite 3 into MySQL 5. What's the error number and

[sqlite] Exporting to MySQL?

2008-10-08 Thread Gilles Ganault
Hello I'm no MySQL expert, and am having some syntax errors when trying to export data from SQLite 3 into MySQL 5. Before I dive into MySQL's documentation, does someone know how I should rewrite this type of SQL to keep MySQL happy? BEGIN TRANSACTION; CREATE TABLE dummy (id TEXT PRIMARY KEY NOT

RE: [sqlite] Exporting MS Access MDB into SQLite

2005-03-28 Thread Cariotoglou Mike
5 9:54 AM > To: sqlite-users@sqlite.org > Subject: [sqlite] Exporting MS Access MDB into SQLite > > SQLite Users, > > I started to export an Access MDB file into a DB file that > was created with SQLite. > > I was using the Visual Basic, Visual Data Manager tool to &g

[sqlite] Exporting MS Access MDB into SQLite

2005-03-27 Thread RAY BORROR
SQLite Users, I started to export an Access MDB file into a DB file that was created with SQLite. I was using the Visual Basic, Visual Data Manager tool to export tables to the SQLite DB using the SQLite ODBC driver. The first table went OK. All other tables after that came up with the