I need to get column names from table, only difference is that I made a function that makes new column depending on users entry in txtbox. So for example if a user enters \"
Actually Pragma can help you to get all columns name with type etc etc.PRAGMA_SQL
PRAGMA table_info(table_name);
Alternatively you may use another way like ;
SELECT sql FROM sqlite_master WHERE tbl_name = 'table_name' AND type = 'table'