Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
What's the better way to store base64 in SQLite Database? I was thinking to put base64 as TEXT since base64 has lots of chars. CREATE TABLE name (id INTEGER PRIMARY KEY AUTO_INCREMENT, image TEXT)...
#4: Post edited
- What's the better way to store base64 in SQLite Database? I was thinking to put base64 as TEXT since base64 has lots of chars.
- ```sql
- CREATE TABLE name (id INTEGER PRIMARY KEY AUTO_INCREMENT, image TEXT);
- ```
Is there any other value in SQL for base64? I don't want to use bitmap.
- What's the better way to store base64 in SQLite Database? I was thinking to put base64 as TEXT since base64 has lots of chars.
- ```sql
- CREATE TABLE name (id INTEGER PRIMARY KEY AUTO_INCREMENT, image TEXT);
- ```
- Is there any other value in SQL for base64? I don't want to use bitmap (BLOB)[^1].
- [^1]: not removing the whole text since someone had mentioned it in answer. And I forgot the name that's why I used bitmap earlier.
#2: Post edited
What's the better way to store base64 in SQLite Database?
What's the better way to store base64 in SQLite Database? I was thinking to put base64 as TEXT since base64 has lots of chars. ```sql CREATE TABLE name (id INTEGER PRIMARY KEY AUTO_INCREMENT, image TEXT); ``` Is there any other value in SQL for base64? I don't want to use bitmap.
#1: Initial revision
What's the better way to store base64 in SQLite Database?
What's the better way to store base64 in SQLite Database? I was thinking to put base64 as TEXT since base64 has lots of chars. ```sql CREATE TABLE name (id INTEGER PRIMARY KEY AUTO_INCREMENT, image TEXT); ``` Is there any other value in SQL for base64? I don't want to use bitmap.