A table named sqlite_master. It's storing all tables' properties.
You can get all tables' name by executing a SQL sentence.
1. SELECT Name FROM sqlite_master WHERE type='table'
A table named sqlite_master. It's storing all tables' properties.
You can get all tables' name by executing a SQL sentence.
1. SELECT Name FROM sqlite_master WHERE type='table'