[sqlite] MonoDevelop Data Provider

2008-06-20 Thread Richard W. Kulp
I am trying to make my first MonoDevelop program using SQLite as the database. I have been unable to find a data provider. Does anyone know of a SQLite data provider for MonoDevelop 1.0? If there is one, an example of how to incorporate it into a MonoDevelop program would be appreciated. I am new

Re: [sqlite] MonoDevelop Data Provider (Richard W. Kulp)

2008-06-21 Thread Richard W. Kulp
I found it lurking under Mono.Data.SqliteClient in the Edit References -- Projects tab. For some reason I was unable to find it yesterday. Dick ___ sqlite-users mailing list sqlite-users@sqlite.org

[sqlite] Table Adapter Update Question

2008-06-25 Thread Richard W. Kulp
I am trying to convert a VB 2005 program from a SQLExpress database to SQLite 3. I have been successful up to the following line of code: Me.Dbo_UsersTableAdapter.Update(Me.TSEPWin5UserSQLiteDB.dbo_Users) It seems that the DboTableAdapter does not support the Update command. What is the

Re: [sqlite] Table Adapter Update Question (Richard W. Kulp)

2008-06-25 Thread Richard W. Kulp
t;On Wed, Jun 25, 2008 at 5:14 PM, Richard W. Kulp <[EMAIL PROTECTED]> >wrote: >> I am trying to convert a VB 2005 program from a SQLExpress database to >> SQLite 3. I have been successful up to the following line of code: >> >> Me.Dbo_UsersTableAdap

[sqlite] Deploying SQLite Membership & Role Providers

2008-06-27 Thread Richard W. Kulp
I have successfully created an ASP.Net web page that uses the Membership & Role providers (http://www.codeproject.com/KB/aspnet/SQLiteProviders.aspx) and System.Data.SQLite (http://sqlite.phxsoftware.com/). It works fine on my development computer. However, I have the following problems that I

Re: [sqlite] sqlite-users Digest, Vol 6, Issue 90

2008-06-27 Thread Richard W. Kulp
In my previous post I wrote: >I have successfully created an ASP.Net web page that uses the Membership & >Role providers (http://www.codeproject.com/KB/aspnet/SQLiteProviders.aspx) I was in error. I actually am using the membership and role providers developed by Dr. Peter Bromberg