tmotagam / sqlite-electron

module for electron to use sqlite3 databases
GNU General Public License v3.0
79 stars 11 forks source link

Select Statement returns no column name #5

Closed SerdilMordeniz closed 2 years ago

SerdilMordeniz commented 2 years ago

When you try to query with a simple select query it returns arrays instead of array objects with column names.

tmotagam commented 2 years ago

Hello @SerdilMordeniz, The fetch will only return array of values and not array of key value pairs because the SQLite engine is based on python and python only returns array of values and not array of key value pairs.