On 7/27/2005 at 16:24 djm wrote: >Hello, > >It seems that the functions required for reading data without a >callback are mising in SQLite 3? I cant find "sqlite3_compile", >or "sqlite3_step". Am I missing something? > >The documentation on the website describes "sqlite_compile" and >"sqlite_step" which were presumably menat to be "upgraded" to "3" >versions but are now just missing. The main.c file also contains the >comments "..The following routine destroys a virtual machine that is >created by >** the sqlite3_compile() routine.."
I think you are looking at the sqlite2 documentation, not sqlite3! sqlite_compile was changed to sqlite3_prepare in sqlite 3 (with very different schematics, so readily closely) sqlite3_step still exists, but it takes different arguments

