Re: [sqlite] What wrapper for SQLite?

2006-06-20 Thread Clay Dowling
I've been using SQLite from Delphi. I found it easiest to use the native API, and put my own wrappers around it when necessary. In general I've kept it pretty simple, because I'm using SQLite as an intermediate database to manage data conversions. For the main data store of an application

Re: [sqlite] What wrapper for SQLite?

2006-06-20 Thread Ralf Junker
Different tasks require different approaches. Therefore DISQLite3 offers three levels of abstraction to Delphi developers: 1. The full SQLite3 API, all contained in a single Delphi unit. Best suited to all who like direct access to the SQLite3 interface or want to write their own, app-specific

Re: [sqlite] What wrapper for SQLite?

2006-06-20 Thread Micha Bieber
> A lot of the time using the vanilla API keeps you from coding in the > style most suited for a modern lang, which may only help introduce > bugs which the dev isn't used to worrying about. I don't think it's > right to recommend using it when there are wrappers tailored to keep > the dev

Re: [sqlite] What wrapper for SQLite?

2006-06-20 Thread drh
"Cory Nelson" <[EMAIL PROTECTED]> wrote: > > > > > > I would certainly suggest to not > > > use any library and use directly the sqlite procs. > > > > > I would endorse that approach. The Sqlite API is simple and easy to > > use, so why not take advantage of that and KISS (Keep It Simple Senor)?

Re: [sqlite] What wrapper for SQLite?

2006-06-20 Thread Cory Nelson
On 6/20/06, John Stanton <[EMAIL PROTECTED]> wrote: Costas Stergiou wrote: >>Hello, >> >>I need a server-less SQL engine. Unless someone recommends a better tool >>(embedded FireBird? Something else?), I'm thinking of using SQLite. >> >>Problem is, several wrappers are listed in the SQLite wiki.

Re: [sqlite] What wrapper for SQLite?

2006-06-20 Thread John Stanton
Costas Stergiou wrote: Hello, I need a server-less SQL engine. Unless someone recommends a better tool (embedded FireBird? Something else?), I'm thinking of using SQLite. Problem is, several wrappers are listed in the SQLite wiki. Can you recommend one, ideally under active development, easy

RE: [sqlite] What wrapper for SQLite?

2006-06-19 Thread Costas Stergiou
> Hello, > > I need a server-less SQL engine. Unless someone recommends a better tool > (embedded FireBird? Something else?), I'm thinking of using SQLite. > > Problem is, several wrappers are listed in the SQLite wiki. Can you > recommend one, ideally under active development, easy to use, etc.