Getting table schema doesn't seem to work with System.Data.SQLite
问题 I'm using SQLite.NET to access my databases, and in one particular case, I need to get a table schema because it's application-specific. I've been looking through the SQLite.NET forum and google, and it seems very straightforward. If I have a table called MYTABLE, I should be able to do this: DataTable dt = Connection.GetSchema( SQLiteMetaDataCollectionNames.Columns, new string[] { null, null, "MYTABLE", null }); The problem is that, although I do get a DataTable back, it's got all of the