RE: [sqlite] LoadExtentions can't open DB

2007-06-26 Thread WHITE, DANIEL
I don't think the current build of SQLiteDatabaseBrowser has any FTS
support, so it needs to be upto date.


Daniel A. White 
{ Kent State University: Computer Science major }
{ JMC TechHelp: Taylor Hall, server techie }
{ E-mail: [EMAIL PROTECTED] }
{ Colossians 3:17 }

-Original Message-
From: Andre du Plessis [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 26, 2007 8:27 AM
To: sqlite-users@sqlite.org
Subject: [sqlite] LoadExtentions can't open DB

I have been testing FTS2 and it is awesome I must say, hope that the
project will keep going,

I have this problem though:

 

Once load extentions is enabled and fts2 is enabled, I cannot see
anything in the DB anymore  when I open it in SQLiteDatabaseBrowser.

I CAN open it though, just cant see anything.

 

It is the application I use to administer the DB.

 

Any idea why or how to get it to work?


-
To unsubscribe, send email to [EMAIL PROTECTED]
-



RE: [sqlite] Introducing... ManagedSQLite

2007-06-25 Thread WHITE, DANIEL
Sam:

The main advantage of mine is that it is lightweight and easy to use
without using ADO.NET.


Daniel A. White 
{ Kent State University: Computer Science major }
{ JMC TechHelp: Taylor Hall, server techie }
{ E-mail: [EMAIL PROTECTED] }
{ Colossians 3:17 }

-Original Message-
From: 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 of the
existing one?  SQLite.NET already provides full ADO.NET support
including custom functions and collation sequences written in any .NET
languages and built-in encryption.

Thanks,

Sam
 


---
We're Hiring! Seeking a passionate developer to join our team building
products. Position is in the Washington D.C. metro area. If interested
contact [EMAIL PROTECTED]
 
-Original Message-
From: WHITE, DANIEL [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
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)
port to the mix.  One DLL file unlike others out there.  Supports FTS1
and FTS2 out of the box!!!

I am looking for help with this little project.  I think we could
eventually make an entire ADO.NET wrapper with this thing.  Thanks.

http://code.google.com/p/managed-sqlite/

Thanks for reading.

Daniel A. White
{ Kent State University: Computer Science major } { JMC TechHelp: Taylor
Hall, server techie } { E-mail: [EMAIL PROTECTED] } { Colossians 3:17 }




-
To unsubscribe, send email to [EMAIL PROTECTED]

-


-
To unsubscribe, send email to [EMAIL PROTECTED]
-



RE: [sqlite] Trouble compiling with MSVC++ 6.0

2007-06-25 Thread WHITE, DANIEL
I know VC++ 8.0 (2005) works like a charm! 


Daniel A. White 
{ Kent State University: Computer Science major }
{ JMC TechHelp: Taylor Hall, server techie }
{ E-mail: [EMAIL PROTECTED] }
{ Colossians 3:17 }

-Original Message-
From: Robert Simpson [mailto:[EMAIL PROTECTED] 
Sent: Monday, June 25, 2007 5:57 PM
To: sqlite-users@sqlite.org
Subject: RE: [sqlite] Trouble compiling with MSVC++ 6.0

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Monday, June 25, 2007 2:39 PM
> To: sqlite-users@sqlite.org
> Subject: [sqlite] Trouble compiling with MSVC++ 6.0
> 
> Ticket #2457 reports difficulty building SQLite version 3.4.0 using 
> MSVC++ 6.0.  This appears to be a bug in MSVC++.  See the comments on 
> the ticket for details:
> 
>http://www.sqlite.org/cvstrac/tktview?tn=2457
> 
> I do not own MSVC++ (and have no intention of acquiring a copy) so I 
> am unable to reproduce.  On the other hand, Version 3.4.0 has been out

> for a week and there have been no other reports of problems, so I am 
> somewhat suspicious that this problem is specific to the specific 
> installation.
> 
> Can anybody shed any light on ticket #2457?  Can anybody else 
> reproduce the problem or suggest a work-around?

Error in MSVC 6.0 -- the user who wrote the ticket hasn't installed the
latest service pack of VC6.

http://support.microsoft.com/kb/890892

Robert




-
To unsubscribe, send email to [EMAIL PROTECTED]

-


-
To unsubscribe, send email to [EMAIL PROTECTED]
-



RE: [sqlite] Introducing... ManagedSQLite

2007-06-24 Thread WHITE, DANIEL
Hi Sam!

1. I don't have any samples.  If you would like to write some that would
be great!  Rob's article at Code Project
<http://www.codeproject.com/database/CppSQLite.asp> Has some of his
samples.  Most of the functions are still the same function-wise as his.
I have cleaned up the naming, added managed exceptions, and added
Unicode support.

2. I don't think so.  This is a small part of a bigger project I am
working on so I don't have the time to focus much on it.  Anysway, its
not feature complete and it has the SQLite code in it -- NATIVELY -- no
changes.

Best of luck!

Daniel A. White 
{ Kent State University: Computer Science major }
{ JMC TechHelp: Taylor Hall, server techie }
{ E-mail: [EMAIL PROTECTED] }
{ Colossians 3:17 }

-Original Message-
From: sqlite [mailto:[EMAIL PROTECTED] 
Sent: Sunday, June 24, 2007 2:33 AM
To: sqlite-users@sqlite.org
Subject: Re: [sqlite] 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! 

  - sam - 

WHITE, DANIEL writes: 

> 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) port to the mix.  One DLL file unlike others out there.  
> Supports FTS1 and FTS2 out of the box!!!
> 
> I am looking for help with this little project.  I think we could 
> eventually make an entire ADO.NET wrapper with this thing.  Thanks.
> 
> http://code.google.com/p/managed-sqlite/
> 
> Thanks for reading. 
> 
> Daniel A. White
> { Kent State University: Computer Science major } { JMC TechHelp: 
> Taylor Hall, server techie } { E-mail: [EMAIL PROTECTED] } { 
> Colossians 3:17 }
> 


-
To unsubscribe, send email to [EMAIL PROTECTED]

-


-
To unsubscribe, send email to [EMAIL PROTECTED]
-



[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)
port to the mix.  One DLL file unlike others out there.  Supports FTS1
and FTS2 out of the box!!!

I am looking for help with this little project.  I think we could
eventually make an entire ADO.NET wrapper with this thing.  Thanks.

http://code.google.com/p/managed-sqlite/

Thanks for reading.

Daniel A. White 
{ Kent State University: Computer Science major }
{ JMC TechHelp: Taylor Hall, server techie }
{ E-mail: [EMAIL PROTECTED] }
{ Colossians 3:17 }



[sqlite] FTS2 Problem

2007-06-23 Thread WHITE, DANIEL
Hi all! I am having a problem with FTS2.  Someone in the IRC channel
(after I posted a bug report) said to contact here.

My issue is here.  Please respond asap!  Thanks.

http://www.sqlite.org/cvstrac/tktview?tn=2446

Daniel A. White 
{ Kent State University: Computer Science major }
{ JMC TechHelp: Taylor Hall, server techie }
{ E-mail: [EMAIL PROTECTED] }
{ Colossians 3:17 }