Is there a way to generate SQLite3 database by writing PHP with no SQL?
Somewhat like django’s models.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you don’t want to write SQL, a possibility is to use an abstraction layer, like the Doctrine ORM.
It will allow to manipulate objects, on the PHP side — and will deal with the database-related stuff (including compatibility between several types of SQL databases).