i want to use fmdb in my iPhone application. What are the differences in using sqlite with fmdb without fmdb?
i need to be able to write queries.
how the fmdb i
It should also be noted that the author of sqlite (D. Richard Hipp) never intended the sqlite api to be used directly by programmers. The idea was to create a low level API that higher level wrappers would use inside their applications (and I think that's largely why we see sqlite in just about everything these days!).
So even if you don't use FMDB, you should find another wrapper around SQLite. Your life will be easier in the long run.