How to present bitstring in SQLite3 ? I am using SQLite Maestro and I don’t see bitstring type. What type to choose ?
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.
BLOB for binary data…
While SQLite does have a few basic bit-wise operators (that only work on data convertible to a NUMERIC), it is pretty much up to the client on how to handle the “bitstring” — so check on how the client works and what back-end formats are utilitized. (For instance, bitstrings of no more than 64 elements can be saved in an INTEGER field.)
All the SQLite types and type affinities are discussed here in a fair bit of detail.
Happy SQL’ing.