What is SQLite? Can I put audio file in it and use it with Android?
I want to use it in my project.
Thank you.
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 I understand your question properly, SQLite is a relational database available on Android. It behaves like any other relational database (MySQL, postgres, etc). But it does have a few differences, such as there are only 4 data types.
It could hold audio files (as a BLOB), but it would be better to store the audio file in the filesystem and store the path in the DB. Of course there might be other ways. Android provides some helper classes to work with SQLite.
With out knowing what you want to do, here are a few helpful links:
Hop those help.