I use sqlite3 with c language recently. Can anyone tell me some convenient ORM for c?
Is there necessay to develop a ORM mechanism for my own projects?
I use sqlite3 with c language recently. Can anyone tell me some convenient ORM
Share
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.
Having a need for ORM suggests to me that you have some sort of business / domain object model in mind that you want to map to a database.
If that is the case, then it strikes me that you are trying to write a business application in a language best suited for systems programming (C). You might want to consider whether this is a good architectural strategy.
Furthermore, I don’t think ORM is ever likely to be a good fit for a language that:
Finally, there are plenty of people who believe that ORM is an anti-pattern in any case. (example, example, example)
Overall, my suggestion would be to either: