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

2012-08-20 Thread Bishwa Shrestha
On 08/20/2012 11:08 AM, Bishwa Shrestha wrote: Hi, I am creating an sqlite3 interface to an existing data model. For that purpose sqlite3 tables are dynamically loaded. I'm using /sqlite3_column_count/ and /sqlite3_column_table_name/ to load data into relevant tables only. Now, I am having

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

2012-08-20 Thread Bishwa Shrestha
Hi, I am creating an sqlite3 interface to an existing data model. For that purpose sqlite3 tables are dynamically loaded. I'm using /sqlite3_column_count/ and /sqlite3_column_table_name/ to load data into relevant tables only. Now, I am having problems with queries such as: SELECT a.column1

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

2012-08-17 Thread Richard Hipp
-Original Message- > > From: [email protected] [mailto:sqlite-users- > > [email protected]] On Behalf Of Richard Hipp > > Sent: Friday, August 17, 2012 12:09 PM > > To: General Discussion of SQLite Database > > Subject: Re: [sqlite] Encryption u

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

2012-08-17 Thread John Grasmeder
e- > From: [email protected] [mailto:sqlite-users- > [email protected]] On Behalf Of Richard Hipp > Sent: Friday, August 17, 2012 12:09 PM > To: General Discussion of SQLite Database > Subject: Re: [sqlite] Encryption using System.Data.SQLite.dll > > On Fri

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

2012-08-17 Thread Richard Hipp
On Fri, Aug 17, 2012 at 11:58 AM, Carlos Milon Silva wrote: > John, > > The internal Adobe Air SQLite is built to not accept extensions, > Yes, but Adobe Air comes with the SQLite Encryption Extension (SEE) built in. There is nothing that needs to be extended with Adobe Air. > so, either the

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

2012-08-17 Thread Carlos Milon Silva
[email protected] [mailto:sqlite-users- [email protected]] On Behalf Of Carlos Milon Silva Sent: Thursday, August 16, 2012 06:01 PM To: General Discussion of SQLite Database Subject: Re: [sqlite] Encryption using System.Data.SQLite.dll if you really need to use System.Data.SQLite.dll, from

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

2012-08-17 Thread Mike
On 8/17/12 9:48 AM, John Grasmeder wrote: Joe Mistachkin has also replied with a reference to SQLite Encryption Extension (http://www.hwaci.com/sw/sqlite/see.html) which I will look into today and see if it can be added to my Dotnet code. That $2000.00 license fee would be a killer for me! Mi

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

2012-08-17 Thread John Grasmeder
ge- > From: [email protected] [mailto:sqlite-users- > [email protected]] On Behalf Of Carlos Milon Silva > Sent: Thursday, August 16, 2012 06:01 PM > To: General Discussion of SQLite Database > Subject: Re: [sqlite] Encryption using System.Data.SQLite.dll > >

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] 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 encrypt

[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