I would like to use a Windows-based SQLite Administrator to work on my SQLite database. Is the DB file (s3db) portable to mobile platforms like iOS and Android?
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.
A SQLite database file is just that, a file so it should work on any file system/OS regardless of where it was created. The one exception to that would be something like encoding, but the beauty of SQLite is that it’s actually just an abstraction on a flat file that allows you to preform most of the relational db functionality. Also, because it’s a standardized format, any client should work to read it as well (assuming both the creator and the reader conform to the specification).