[sqlite] [VB.Net] Working with SQLite?

2010-02-24 Thread Gilles Ganault
Hello I'm only getting started with VB.Net, and I need a way to work with an SQLite 3 database. According to the wiki, the following solutions seem to be currently supported: = System.Data.SQLite http://sqlite.phxsoftware.com/ Devart dotConnect for SQLite www.devart.com/dotconnect/s

Re: [sqlite] [VB.Net] Working with SQLite?

2010-02-24 Thread Nick Shaw
nt on 3rd party interfaces. Nick. -Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Gilles Ganault Sent: 24 February 2010 12:30 To: sqlite-users@sqlite.org Subject: [sqlite] [VB.Net] Working with SQLite? Hello I'm only

Re: [sqlite] [VB.Net] Working with SQLite?

2010-02-24 Thread Gilles Ganault
On Wed, 24 Feb 2010 13:17:23 -, "Nick Shaw" wrote: >You could just import the required DLL functions from sqlite3.dll? Not >very object-oriented, I admit - you'd need to write your own class >wrapper around the functions if you wanted that - but I'd think that >importing the functions was the

Re: [sqlite] [VB.Net] Working with SQLite?

2010-02-24 Thread Nick Shaw
Subject: Re: [sqlite] [VB.Net] Working with SQLite? On Wed, 24 Feb 2010 13:17:23 -, "Nick Shaw" wrote: >You could just import the required DLL functions from sqlite3.dll? Not >very object-oriented, I admit - you'd need to write your own class >wrapper around the functions

Re: [sqlite] [VB.Net] Working with SQLite?

2010-02-24 Thread Gilles Ganault
On Wed, 24 Feb 2010 13:31:52 -, "Nick Shaw" wrote: >Ah ok, in that case a 3rd party interface would probably be quickest for >you. :) Thanks. For those interested, using the above open-source wrapper, here's how to 1) create a new SQLite database file, 2) create a new table if it doesn't exis