InterviewSolution
Saved Bookmarks
| 1. |
What is the maximum size of an SQLite VARCHAR? |
|
Answer» There is no SPECIFIC length for VARCHAR in SQLITE. Users can declare a VARCHAR(10), and SQLite is capable of storing a 500 million CHARACTER string there while keeping all the CHARACTERS intact. |
|