Re: [sqlite] Is there direct (non SQL) table access?

2008-03-17 Thread dan.winslow
what you need? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of danjenkins Sent: Sunday, March 16, 2008 12:19 AM To: sqlite-users@sqlite.org Subject: [sqlite] Is there direct (non SQL) table access? Is it possible to access a table without a SQL query? I've b

Re: [sqlite] Is there direct (non SQL) table access?

2008-03-16 Thread danjenkins
Now that I know it's not easily doable, I'll just use an update statement. Thanks for saving me a lot of time guys! -Dan -- View this message in context: http://www.nabble.com/Is-there-direct-%28non-SQL%29-table-access--tp16075825p1608.html Sent from the SQLite mailing list archive at

Re: [sqlite] Is there direct (non SQL) table access?

2008-03-16 Thread Igor Tandetnik
"danjenkins" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Is it possible to access a table without a SQL query? I've been > searching and haven't found a way. > I'd like to do something like this: > > sqlite3 *pDB = NULL; // database pointer > FILE* fp = fopen("people.db","a+");

Re: [sqlite] Is there direct (non SQL) table access?

2008-03-16 Thread Cory Nelson
On Sat, Mar 15, 2008 at 10:18 PM, danjenkins <[EMAIL PROTECTED]> wrote: > > Is it possible to access a table without a SQL query? I've been searching > and haven't found a way. > I'd like to do something like this: > > sqlite3 *pDB = NULL; // database pointer > FILE* fp =

[sqlite] Is there direct (non SQL) table access?

2008-03-15 Thread danjenkins
Is it possible to access a table without a SQL query? I've been searching and haven't found a way. I'd like to do something like this: sqlite3 *pDB = NULL; // database pointer FILE* fp = fopen("people.db","a+"); sqlite3_open("people.db",); // Pseudo code that I need help with follows...