SQLite Forum

Only Column Names read from table
Login
If you really can't upgrade to version 3.16.0 or newer, you will have to use 

```sql
PRAGMA table_info('Datalogger1');
```

This statement will return the same information in a result set, that you can retrieve in the same way as the result set from any SELECT statement.

If you use the value of `cid` as an index in the table where you store the column names in your program, the order in the result set will not matter.