[sqlite] Where I can get sqlite 3.2.2 ?

2008-05-25 Thread 현시욱
Hi, all. I trying to get sqlite 3.2.2 source code these days. I've searched web site But, I cann't get. Is there any web site I can get sqlite 3.2.2? -hyun- ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/lis

[sqlite] Possible to use field names instead of index offsets in queries?

2008-05-25 Thread danjenkins
Hi, Without using a wrapper, is there a simple way of accessing a query's results using field/column names instead of index offsets? For example, instead of: strcpy(DeptCodeStructure[i-1].DeptName, result[i*ncols+1]); Something more like: strcpy(DeptCodeStructure[i-1].DeptName, fieldname("DeptNa

Re: [sqlite] Checking for open transactions attach/detach database and Trigger behaviour with attached databases

2008-05-25 Thread MoDementia
What is the appropriate etiquette if I don't receive a solution/answer in ?? days -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of MoDementia Sent: Friday, 23 May 2008 12:32 PM To: sqlite-users@sqlite.org Subject: [sqlite] Checking for open transactions att

Re: [sqlite] Possible to use field names instead of index offsets in queries?

2008-05-25 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 danjenkins wrote: > Hi, > Without using a wrapper, is there a simple way of accessing a query's > results using field/column names instead of index offsets? You are already using a wrapper - sqlite3_get_table. To solve this problem you will need to u