Re: [sqlite] Introducing... ManagedSQLite

2007-06-27 Thread Yves Goergen
On 27.06.2007 02:27 CE(S)T, Robert Simpson wrote: If you'd rather communicate directly with the database and process per-row as quickly as possible, you can use the DbCommand/DbDataReader model. Hm, okay, that's what I referred to that I am using. While some may argue whether or not 592k is

Re: [sqlite] Introducing... ManagedSQLite

2007-06-26 Thread Yves Goergen
On 26.06.2007 00:24 CE(S)T, WHITE, DANIEL wrote: The main advantage of mine is that it is lightweight and easy to use without using ADO.NET. Okay, the other SQLite.NET DLL has 592 kB, that's not necessarily lightweight. I'd like to be able to include the SQLite library into the main assembly so

RE: [sqlite] Introducing... ManagedSQLite

2007-06-26 Thread Robert Simpson
-Original Message- From: Yves Goergen [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 26, 2007 4:55 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] Introducing... ManagedSQLite On 26.06.2007 00:24 CE(S)T, WHITE, DANIEL wrote: The main advantage of mine

RE: [sqlite] Introducing... ManagedSQLite

2007-06-25 Thread Samuel R. Neff
[mailto:[EMAIL PROTECTED] Sent: Saturday, June 23, 2007 10:29 PM To: sqlite-users@sqlite.org Subject: [sqlite] Introducing... ManagedSQLite Howdy all! I am just writing tonight to let you know that a project of mine has opened up to being open source -- ManagedSQLite. It is a light wrapper

RE: [sqlite] Introducing... ManagedSQLite

2007-06-25 Thread WHITE, DANIEL
: Samuel R. Neff [mailto:[EMAIL PROTECTED] Sent: Monday, June 25, 2007 10:51 AM To: sqlite-users@sqlite.org Subject: RE: [sqlite] Introducing... ManagedSQLite Daniel, We already have an excellent ADO.NET compliant provider for SQLite that Robert mentioned. What advantages does your wrapper provide

RE: [sqlite] Introducing... ManagedSQLite

2007-06-24 Thread Robert Simpson
-Original Message- From: WHITE, DANIEL [mailto:[EMAIL PROTECTED] Sent: Saturday, June 23, 2007 7:29 PM To: sqlite-users@sqlite.org Subject: [sqlite] Introducing... ManagedSQLite Howdy all! I am just writing tonight to let you know that a project of mine has opened up to being

Re: [sqlite] Introducing... ManagedSQLite

2007-06-24 Thread sqlite
Hello. Thanks for doing this. I have two questions: 1. is there sample code that uses the library in your svn? [i just scanned quickly, but there didn't seem to be] 2. do you have plans to port the test suite so they can be run against this library? Thanks! - sam - WHITE, DANIEL

RE: [sqlite] Introducing... ManagedSQLite

2007-06-24 Thread WHITE, DANIEL
] Introducing... ManagedSQLite Hello. Thanks for doing this. I have two questions: 1. is there sample code that uses the library in your svn? [i just scanned quickly, but there didn't seem to be] 2. do you have plans to port the test suite so they can be run against this library? Thanks

[sqlite] Introducing... ManagedSQLite

2007-06-23 Thread WHITE, DANIEL
Howdy all! I am just writing tonight to let you know that a project of mine has opened up to being open source -- ManagedSQLite. It is a light wrapper around SQLite 3.4.0 that was originally written by Rob Groves. I have added support for Unicode to his wrapper, then added my Managed (.NET)