InterviewSolution
Saved Bookmarks
| 1. |
Mention What Is The Maximum Size Of A Varchar In Sqlite? |
|
Answer» SQLite does not have any specific length for VARCHAR. For instance, you can declare a VARCHAR (10) and SQLite will store a 500 million character string there. It will keep all 500 CHARACTERS intact. SQLite does not have any specific length for VARCHAR. For instance, you can declare a VARCHAR (10) and SQLite will store a 500 million character string there. It will keep all 500 characters intact. |
|