Re: [sqlite] Encryption using System.Data.SQLite.dll

2012-08-16 Thread Carlos Milon Silva
if you really need to use System.Data.SQLite.dll, from Adobe Air, then you need to follow something like to: http://blogs.adobe.com/globalization/invoking-icu-from-adobe-air-applications-part-2-using-flash-builder-4-6/ and call System.Data.SQLite.dll as an external native extension Carlos. Em

Re: [sqlite] Error: database disk image is malformed

2012-08-16 Thread Simon Slavin
On 16 Aug 2012, at 10:14pm, Tal Tabakman wrote: > Answering your question below, > > yes , I believe that the costumer is using network You can read section 6.0 of to learn some of the problems involved. If you need any

Re: [sqlite] SQL logic error or missing database error

2012-08-16 Thread Rittick Gupta
Why would it work with the subseqyent open if there was a problem with the install ? ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] Encryption using System.Data.SQLite.dll

2012-08-16 Thread Joe Mistachkin
John Grasmeder wrote: > > How do I go about changing the encryption method/methods that are used > in the SQLite.SQLiteConnection class? Do I need to implement my own > version of SQLiteConnection and override some methods or is there some > other code I have not found as of date? > The

[sqlite] Error: database disk image is malformed

2012-08-16 Thread Tal Tabakman
Answering your question below, yes , I believe that the costumer is using network On 16 Aug 2012, at 6:52pm, Tal Tabakman http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users>> wrote: >* we get the following error:*Error: database disk image is malformed*>* >Extended Error code: 11**

Re: [sqlite] SQL logic error or missing database error

2012-08-16 Thread Brandon Pimenta
Reinstall SQLite. On Thu, Aug 16, 2012 at 5:46 PM, Rittick Gupta wrote: > SQL logic error or missing database ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] bug in windows 98

2012-08-16 Thread Brandon Pimenta
Upgrade to the latest version of SQLite available for your OS. Maybe upgrade to Windows XP? I am using Mac OS X 10.6.2 and SQLite there is just fine. On Mon, Aug 13, 2012 at 4:06 AM, roger 66 wrote: > > Hello from france, > > I have a bug with windows 98 and sqlite3.dll :

[sqlite] SQL logic error or missing database error

2012-08-16 Thread Rittick Gupta
I get the following error while opening the database after a system reboot. SQL logic error or missing database The problem does not happen with the subsequent open with a new process. Is there any reason why we get these errors? ___ sqlite-users

Re: [sqlite] Error: database disk image is malformed

2012-08-16 Thread Brandon Pimenta
Have you tried reinstalling SQLite? On Thu, Aug 16, 2012 at 2:52 PM, Tal Tabakman wrote: > Error: database disk image is malformed ___ sqlite-users mailing list sqlite-users@sqlite.org

Re: [sqlite] Why "TRUNCATE TABLE" can't empty a table?

2012-08-16 Thread Brandon Pimenta
Use DROP TABLE students; That will permanently delete the table students. This is irreversible and cannot be undone. On Tue, Aug 14, 2012 at 4:06 AM, Dan Kennedy wrote: > On 08/14/2012 02:04 PM, daedae11 wrote: > >> Following is my program: >> rc = sqlite3_exec(db,

[sqlite] Encryption using System.Data.SQLite.dll

2012-08-16 Thread John Grasmeder
Hello List, I am currently using System.Data.SQLite.dll version 1.0.79.0. I am creating a SQLite database file from data stored in MS-SQL which will be pushed to client applications running an Adobe Air application on Macs and Windows PCs. Everything is progressing nicely but I am now at the

Re: [sqlite] Error: database disk image is malformed

2012-08-16 Thread Simon Slavin
On 16 Aug 2012, at 6:52pm, Tal Tabakman wrote: > we get the following error:*Error: database disk image is malformed > Extended Error code: 11* Is network or remote access involved in any part of this ? Or is the database file on the hard disk of the computer running

Re: [sqlite] Error: database disk image is malformed

2012-08-16 Thread David Barrett
On 08/16/2012 11:19 AM, Richard Hipp wrote: On Thu, Aug 16, 2012 at 1:52 PM, Tal Tabakman wrote: Hi. we are writing an application that in runtime produces a sqlite database. we get the following error:*Error: database disk image is malformed Extended Error code: 11* *

Re: [sqlite] Error: database disk image is malformed

2012-08-16 Thread Richard Hipp
On Thu, Aug 16, 2012 at 1:52 PM, Tal Tabakman wrote: > Hi. > we are writing an application that in runtime produces a sqlite database. > > we get the following error:*Error: database disk image is malformed > Extended Error code: 11* > * > * > *what can cause this error ?

[sqlite] Error: database disk image is malformed

2012-08-16 Thread Tal Tabakman
Hi. we are writing an application that in runtime produces a sqlite database. we are using this set of pragmas:( and also the CEROD extension for compression purposes). "PRAGMA cache_size=1;" "PRAGMA synchronous = 0;"; "PRAGMA temp_store=MEMORY"; "PRAGMA journal_mode = MEMORY;" "PRAGMA