Re: [sqlite] Newbie --question about multiple PCs accessing sqlite

2004-05-20 Thread Daniel Lee Kruse
Fred Williams wrote: -Original Message- From: Michael Roth [mailto:[EMAIL PROTECTED] Sent: Thursday, May 20, 2004 9:10 AM To: Ulrik Petersen Cc: [EMAIL PROTECTED] Subject: Re: [sqlite] Newbie --question about multiple PCs accessing sqlite Ulrik Petersen wrote: - Mingw or Cygwin (google fo

[sqlite] help about porting sqlite to my S3C4510

2004-05-20 Thread jackzheng2002
hi, sir I'd like to port sqlite to my S3C4510 board, and the embOS is uClinux. I don't know how can i start. If anybody can make some suggestions, i will be lucky to be here. Jeanwelly - To unsubscribe, e-mail: [EMAIL PR

Re: [sqlite] Join Issue

2004-05-20 Thread Kurt Welgehausen
> Any Ideas what could be going wrong here. Hint: '1' is not equal to ' 1' Regards - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[sqlite] Join Issue

2004-05-20 Thread Rao, Prasanna [EPM/RTC]
sqlite> select statustext from statustext, spmblock where spmblock.spmstatus = statustext.statusid; sqlite> .schema statustext CREATE TABLE [StatusText] ( [StatusId] char(4) NOT NULL , [StatusText] [nvarchar] (50) NOT NULL ); sqlite> .schema spmblock CREATE TABLE SPMBlock (

RE: [sqlite] Create Table Issue.?

2004-05-20 Thread Brass Tilde
> > CREATE TABLE [SPMBlock] ( > > [SPMId] [int] identity(1,1) NOT NULL , Does "identity" do the same thing as it does under MS SQL Server? I thought the way to get an identity field in SQLite was to define it as "integer primary key". ---

Re: [sqlite] Create Table Issue.?

2004-05-20 Thread Derrell . Lipman
"Rao, Prasanna [EPM/RTC]" <[EMAIL PROTECTED]> writes: > --Drop table SPMBLOCK; > > CREATE TABLE [SPMBlock] ( > [SPMId] [int] identity(1,1) NOT NULL , >[DeviceId] char (3) , >[SPMIndex] char (3) , >[SPMStatus] char (4) , >[BaselineMean] char (10) DE

[sqlite] Proposal for SQLite 3.0

2004-05-20 Thread Miguel Angel LAtorre Díaz
I think version 3.x should do sorting and grouping on disk. Using temporary tables? Once we have btrees, why not using them? It may not be the fastest way of doing it, but it saves lots of memory. Perhaps it could begin doing it in memory and when reaching some certain value it could use the extern

[sqlite] Create Table Issue.?

2004-05-20 Thread Rao, Prasanna [EPM/RTC]
--Drop table SPMBLOCK; CREATE TABLE [SPMBlock] ( [SPMId] [int] identity(1,1) NOT NULL , [DeviceId] char (3) , [SPMIndex] char (3) , [SPMStatus] char (4) , [BaselineMean] char (10) DEFAULT (0), [Mean] char (10) DEFAULT (0),

Re: [sqlite] runtime detect of THREADSAFE

2004-05-20 Thread Christian Smith
On Wed, 19 May 2004, Stefano Barbato wrote: >Hi, > >I already tried to find the aswer on the faq/wiki/mailing list archive/google >with no luck so here is my question: > >is there a way to detect at runtime if the sqlite library has been compiled >with the THREADSAFE=1 flag or not? > >I need threa

RE: [sqlite] Newbie --question about multiple PCs accessing sqlite

2004-05-20 Thread Fred Williams
> -Original Message- > From: Michael Roth [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 20, 2004 9:10 AM > To: Ulrik Petersen > Cc: [EMAIL PROTECTED] > Subject: Re: [sqlite] Newbie --question about multiple PCs accessing > sqlite > > > Ulrik Petersen wrote: > > > - Mingw or Cygwin (goog

Re: [sqlite] Newbie --question about multiple PCs accessing sqlite

2004-05-20 Thread Michael Roth
Ulrik Petersen wrote: - Mingw or Cygwin (google for each) www.mingw.org, www.cygwin.com - Microsoft Visual C++ Toolkit 2003. Microsoft recently released their compiler and toolchain for free download: http://msdn.microsoft.com/visualc/vctoolkit2003/ Check the license! It is not really fair! Don't

[sqlite] Newbie --question about multiple PCs accessing sqlite

2004-05-20 Thread Ulrik Petersen
Hello Shamil, [EMAIL PROTECTED] wrote: I do not have a C++ compiler If you are using Linux or some other Unix-like environment, you can get g++ (i.e., gcc) for free. If you are using Windows, there are several options for getting one (also for free): - Mingw or Cygwin (google for each) - Mic

Re: [sqlite] runtime detect of THREADSAFE

2004-05-20 Thread Stefano Barbato
On Thursday 20 May 2004 09:31, Stefano Barbato wrote: > On Thursday 20 May 2004 00:25, Peter wrote: > > Stefano Barbato wrote: > > > is there a way to detect at runtime if the sqlite library has been > > > compiled with the THREADSAFE=1 flag or not? > > > > No, or not that I know of. It would be ni

Re: [sqlite] runtime detect of THREADSAFE

2004-05-20 Thread Stefano Barbato
On Thursday 20 May 2004 00:25, Peter wrote: > Stefano Barbato wrote: > > is there a way to detect at runtime if the sqlite library has been > > compiled with the THREADSAFE=1 flag or not? > > No, or not that I know of. It would be nice for ver 3 to have a simple > function which returns a structure