Re: [sqlite] VB.net project using Windows CE and SQLite on a handheldPsion terminal

2013-12-03 Thread Joe Mistachkin
J Trahair wrote: > > Thank you - System.Data is of course referenced in the project already. > Does Windows CE as a target device need a different version of > System.Data? The one referenced is the one in C:\Program > Files\Microsoft.Net\SDK\Compact Framework\v2.0\Windows CE folder. > I'm

Re: [sqlite] VB.net project using Windows CE and SQLite on a handheldPsion terminal

2013-12-03 Thread J Trahair
Thank you - System.Data is of course referenced in the project already. Does Windows CE as a target device need a different version of System.Data? The one referenced is the one in C:\Program Files\Microsoft.Net\SDK\Compact Framework\v2.0\Windows CE folder. J Trahair On 02/12/2013 20:58, Joe

Re: [sqlite] VB.net project using Windows CE and SQLite on a handheldPsion terminal

2013-12-02 Thread Joe Mistachkin
J Trahair wrote: > > 1. Error 5 Reference required to assembly 'System.Data, Version=2.0.0.0, > Culture=neutral, PublicKeyToken=b77a5c561934e089' containing the base > class 'System.Data.Common.DbConnection'. Add one to your project. C:\My > Documents\Psion\PTMPsion\Tickets.vb 7112 24

[sqlite] VB.net project using Windows CE and SQLite on a handheld Psion terminal

2013-12-02 Thread J Trahair
Hi Everyone I am using VS2008 to put a VB.Net application onto a Psion handheld, WindowsCE. In the development mode there are 3 errors which prevent the project from compiling. They seem to be in connection with the System.Data.dll which is the version referenced in the C:\Program

Re: [sqlite] VB.net error on adding SQLite3.dll to ProjectReferences

2011-03-06 Thread J Trahair
Thanks everyone, this is sorted now. J Trahair - Original Message - From: jose simas To: General Discussion of SQLite Database Sent: Sunday, March 06, 2011 11:54 AM Subject: Re: [sqlite] VB.net error on adding SQLite3.dll to ProjectReferences Hi, Use System.Data.Sqlite

Re: [sqlite] VB.net error on adding SQLite3.dll to Project References

2011-03-06 Thread jose simas
Hi, Use System.Data.Sqlite instead: http://sqlite.phxsoftware.com/ Regards, Jose On 3 March 2011 09:23, J Trahair wrote: > Hi everyone. > > VB.Net 2005, I am trying to add sqlite3.dll to the Project References. When I > try to Add the dll  I get an error

Re: [sqlite] VB.net error on adding SQLite3.dll to Project References

2011-03-03 Thread Philip Graham Willoughby
On 3 Mar 2011, at 09:23, J Trahair wrote: > Hi everyone. > > VB.Net 2005, I am trying to add sqlite3.dll to the Project References. When I > try to Add the dll I get an error message: > > 'A reference to {path to sqlite3.dll} could not be added. Please make sure > that the file is

[sqlite] VB.net error on adding SQLite3.dll to Project References

2011-03-03 Thread J Trahair
Hi everyone. VB.Net 2005, I am trying to add sqlite3.dll to the Project References. When I try to Add the dll I get an error message: 'A reference to {path to sqlite3.dll} could not be added. Please make sure that the file is accessible, and that it is a valid assembly or COM component.' The

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

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" <nick.s...@citysync.co.uk> 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 >wra

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

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

2010-02-24 Thread Nick Shaw
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 getting started

[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

Re: [sqlite] [newbie] SQLite + VB.Net 2005?

2008-04-10 Thread Gilles Ganault
On Mon, 07 Apr 2008 05:08:46 +0200, Gilles Ganault <[EMAIL PROTECTED]> wrote: >Would someone have a step-by-step procedure on how to get from a >working VisualStudio 2005 to a working SQLite access? For those interested, http://sqlite.phxsoftware.com seems to work in VS2005 Pro: Imports

[sqlite] [newbie] SQLite + VB.Net 2005?

2008-04-06 Thread Gilles Ganault
Hello I just started learning VB.Net with "The Book of Visual Basic 2005", and would like to use SQLite, but I don't know where to start, as the wrappers I found usually only have C# samples, and assume the reader knows how to install those wrappers... which I dont, yet :-/ Would someone have a

Re: [sqlite] VB.Net DataSet & DataGrid with ADO.Net Provider

2006-06-15 Thread John Newby
Yes please, I am using vb.net but I should be able to work through and see whats going on and transfer it to my project. Many thanks for your help. John On 15/06/06, Noel Frankinet <[EMAIL PROTECTED]> wrote: John Newby wrote: > Hi, I don't know if you can remember but I was asking for

Re: [sqlite] VB.Net DataSet & DataGrid with ADO.Net Provider

2006-06-15 Thread Noel Frankinet
John Newby wrote: Hi, I don't know if you can remember but I was asking for advice on displaying info to the user using a dataset/datagrid, and you said you used a virtual listview. I am currently having loads of trouble using the dataset/datagrid so I was wondering if you could let me know

Re: [sqlite] VB.Net DataSet & DataGrid with ADO.Net Provider

2006-06-15 Thread John Newby
Hi, I don't know if you can remember but I was asking for advice on displaying info to the user using a dataset/datagrid, and you said you used a virtual listview. I am currently having loads of trouble using the dataset/datagrid so I was wondering if you could let me know more about your

Re: [sqlite] VB.Net DataSet & DataGrid with ADO.Net Provider

2006-05-10 Thread John Newby
h it - look for the > > subject "Transactions and 'library routine called out of sequence' locks > > > > the database" in this list). > > > > > > /Michael > > > > -----Original Message- > > From: John Newby [mailto:[EMAIL PROTECTED] > > Se

Re: [sqlite] VB.Net DataSet & DataGrid with ADO.Net Provider

2006-05-10 Thread John Newby
e one single issue with it - look for the > subject "Transactions and 'library routine called out of sequence' locks > the database" in this list). > > > /Michael > > -Original Message- > From: John Newby [mailto:[EMAIL PROTECTED] > Sent: 9. maj 2006

RE: [sqlite] VB.Net DataSet & DataGrid with ADO.Net Provider

2006-05-10 Thread Michael B. Hansen
"Transactions and 'library routine called out of sequence' locks the database" in this list). /Michael -Original Message- From: John Newby [mailto:[EMAIL PROTECTED] Sent: 9. maj 2006 17:18 To: sqlite-users@sqlite.org Subject: [sqlite] VB.Net DataSet & DataGrid with ADO.Net Provider H

Re: [sqlite] VB.Net DataSet & DataGrid with ADO.Net Provider

2006-05-10 Thread Noel Frankinet
John Newby wrote: Hi, I am trying to access a SQLite database using the ADO.Net provider and bring all the data back in a tabular form, I can bring back the data using a datareader but I don't know if I can put the data into a datset or a datagrid. Does anyone know if you can do this? Many

[sqlite] VB.Net DataSet & DataGrid with ADO.Net Provider

2006-05-09 Thread John Newby
Hi, I am trying to access a SQLite database using the ADO.Net provider and bring all the data back in a tabular form, I can bring back the data using a datareader but I don't know if I can put the data into a datset or a datagrid. Does anyone know if you can do this? Many thanks. John.

re: [sqlite] VB.Net

2005-12-19 Thread sales
2005 1:33 PM To: sqlite-users@sqlite.org Subject: [sqlite] VB.Net Dear All , Any possibility of using VB.NET with Sqlite as Backend. Please do mention some links. -- With Best Regards, Vishal Kashyap. http://vishalkashyap.tk

Re: [sqlite] VB.Net

2005-12-19 Thread Robert Simpson
- Original Message - From: "Vishal Kashyap" <[EMAIL PROTECTED]> Any possibility of using VB.NET with Sqlite as Backend. Please do mention some links. http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers Lots to choose from ... Robert

Re: [sqlite] VB.Net

2005-12-19 Thread Cory Nelson
check out the sqlitewrappers wiki page. On 12/19/05, Vishal Kashyap <[EMAIL PROTECTED]> wrote: > Dear All , > > Any possibility of using VB.NET with Sqlite as Backend. > > Please do mention some links. > > > -- > With Best Regards, > Vishal Kashyap. > http://vishalkashyap.tk > -- Cory Nelson

[sqlite] VB.Net

2005-12-19 Thread Vishal Kashyap
Dear All , Any possibility of using VB.NET with Sqlite as Backend. Please do mention some links. -- With Best Regards, Vishal Kashyap. http://vishalkashyap.tk