I am calling DbConnection.GetSchema("Tables") and that does not return a column named "table_comment".
Does Sqlite not have descriptions in its metadata?
Or if it has it, how do I query it?
thanks - dave
I am calling DbConnection.GetSchema("Tables") and that does not return a column named "table_comment".
Does Sqlite not have descriptions in its metadata?
Or if it has it, how do I query it?
thanks - dave
Copyright © 2021 Jogjafile Inc.
I'm not entirely sure this is what you're asking, but
DbConnection.GetSchema("MetaDataCollections")will help you find all of the arguments that theGetSchema()method can take. These methods include views and columns. The"Tables"argument only returns a list of the tables. If by description you are referring to something similar to a MySQLDESCRIBE, you can query thesqlite_masterto see thecreatestatements. That's the closest I know of to comments (though there could certainly be ways I don't know of).