PRAGMA table_info(table-name) returns one row for each column in the named table. Columns in the result set include the column name, data type, whether or not the column can be NULL, and the default value for the column.
The following simple c# code using this statement and check if a column exists on a specified table.