Re: [sqlite] Extremely new to SQLite

2007-08-08 Thread John Stanton
To: sqlite-users@sqlite.org Subject: Re: [sqlite] Extremely new to SQLite Stephen Sutherland wrote: use the quick start code http://www.sqlite.org/quickstart.html That's what I used to build all my code from Stephen, The quickstart code is very old. It uses the callback function

Re: [sqlite] Extremely new to SQLite

2007-08-07 Thread drh
"Lee Crain" <[EMAIL PROTECTED]> wrote: > Thanks for a detailed response, Dennis. > > Under some time constraints, I just finished an important implementation > and used the callback function as the means of acquiring returned data. > > I don't want that interface to become obsolete any time

RE: [sqlite] Extremely new to SQLite

2007-08-07 Thread Lee Crain
, preferred interface. Lee -Original Message- From: Dennis Cote [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 07, 2007 5:08 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] Extremely new to SQLite Lee Crain wrote: > Dennis, > > Are yo

Re: [sqlite] Extremely new to SQLite

2007-08-07 Thread Dennis Cote
P Kishor wrote: In which case, "deprecated" is definitely too strong, but "depreciated" might well be apt. ;-) Good catch. I missed that all together. Lee may have been using the word in the sense that the American Heritage Dictionary says is now common enough to list the milder term

Re: [sqlite] Extremely new to SQLite

2007-08-07 Thread P Kishor
On 8/7/07, Dennis Cote <[EMAIL PROTECTED]> wrote: > Lee Crain wrote: > > Dennis, > > > > Are you certain that the callback function interface has been deprecated? > > > > >From the link you posted: > > > > --- > > > > "2.2 Executing SQL statements > >typedef int

Re: [sqlite] Extremely new to SQLite

2007-08-07 Thread Dennis Cote
Lee Crain wrote: Dennis, Are you certain that the callback function interface has been deprecated? >From the link you posted: --- "2.2 Executing SQL statements typedef int (*sqlite_callback)(void*,int,char**, char**); int sqlite3_exec(sqlite3*, const char *sql,

RE: [sqlite] Extremely new to SQLite

2007-08-07 Thread Lee Crain
n. Lee Crain -Original Message- From: Dennis Cote [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 07, 2007 1:08 PM To: sqlite-users@sqlite.org Subject: Re: [sqlite] Extremely new to SQLite Stephen Sutherland wrote: > use the quick star

Re: [sqlite] Extremely new to SQLite

2007-08-07 Thread Dennis Cote
Stephen Sutherland wrote: use the quick start code http://www.sqlite.org/quickstart.html That's what I used to build all my code from Stephen, The quickstart code is very old. It uses the callback function interface which is a depreciated API function that is maintained

Re: [sqlite] Extremely new to SQLite

2007-08-07 Thread Stephen Sutherland
'm extremely new to SQLite and the documentation at > http://www.sqlite.org didn't do it for me. > Can anyone give me some help/tips. > All I need to do is: > 1. Access db > 2. Retrieve data from a particular row and column (and store it into a > var) > 3. Write/Modify d

Re: [sqlite] Extremely new to SQLite

2007-08-07 Thread Dennis Cote
Rahul Banerjee wrote: I'm trying to integrate SQLite into a library management system coded in C++. I'm extremely new to SQLite and the documentation at http://www.sqlite.org didn't do it for me. Can anyone give me some help/tips. All I need to do is: 1. Access db 2. Retrieve data from

Re: [sqlite] Extremely new to SQLite

2007-07-30 Thread Rahul Banerjee
@sqlite.org Subject: [sqlite] Extremely new to SQLite Hi, I'm trying to integrate SQLite into a library management system coded in C++. I'm extremely new to SQLite and the documentation at http://www.sqlite.org didn't do it for me. Can anyone give me some help/tips. All I need to do is: 1

RE: [sqlite] Extremely new to SQLite

2007-07-27 Thread James Dennett
> -Original Message- > From: Rahul Banerjee [mailto:[EMAIL PROTECTED] > Sent: Friday, July 27, 2007 1:34 PM > To: sqlite-users@sqlite.org > Subject: [sqlite] Extremely new to SQLite > > Hi, > I'm trying to integrate SQLite into a library management system coded

[sqlite] Extremely new to SQLite

2007-07-27 Thread Rahul Banerjee
Hi, I'm trying to integrate SQLite into a library management system coded in C++. I'm extremely new to SQLite and the documentation at http://www.sqlite.org didn't do it for me. Can anyone give me some help/tips. All I need to do is: 1. Access db 2. Retrieve data from a particular row