I am creating application for video app in iPhone, but I don\'t know how to capture a video in iPhone; and I want to store them in SQLite database, but I have one problem: can I
You would be able to store the video data in sqlite as raw data BUT I would strongly recommend AGAINST this. The performance would be awful. Better to save the video to the documents directory and then a path to that in the DB.
If you are working with sqlite then you should look at CoreData, it makes managing persistence a lot easier... download the source code for my core data tutorial as it contains a nice storage service wrapper... tutorial here