RE: [sqlite] Re: How to retrieve results in a array?

2007-06-05 Thread B V, Phanisekhar
You can use sqlite3_get_table. This will internally step through each row. Regards, Phani -Original Message- From: Dave Furey [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 23, 2007 4:52 AM To: sqlite-users@sqlite.org Subject: RE: [sqlite] Re: How to retrieve results in a array? Ok

RE: [sqlite] Re: How to retrieve results in a array?

2007-05-22 Thread Dave Furey
Ok, thanks for that quick response! ppcinfo -Original Message- From: Igor Tandetnik [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 22, 2007 4:18 PM To: SQLite Subject: [sqlite] Re: How to retrieve results in a array? Dave Furey <[EMAIL PROTECTED]> wrote: > I've got a

[sqlite] Re: How to retrieve results in a array?

2007-05-22 Thread Igor Tandetnik
Dave Furey <[EMAIL PROTECTED]> wrote: I've got a C routine that queries for integer data, and I'm currently stepping through each row to fill an integer array. Is there a more convenient way of doing this? For example, is there a special sqlite3 call I can make that will fill up an integer array