Index: System.Data.SQLite/SQLiteConnection.cs
==================================================================
--- System.Data.SQLite/SQLiteConnection.cs
+++ System.Data.SQLite/SQLiteConnection.cs
@@ -3658,12 +3658,46 @@
}
///
/// Retrieves schema information using the specified constraint(s) for the specified collection
///
- /// The collection to retrieve
- /// The restrictions to impose
+ /// The collection to retrieve.
+ ///
+ /// The restrictions to impose. Typically, this may include:
+ ///
+ ///
+ /// restrictionValues element index
+ /// usage
+ ///
+ /// -
+ /// 0
+ /// The database (or catalog) name, if applicable.
+ ///
+ /// -
+ /// 1
+ /// The schema name. This is not used by this provider.
+ ///
+ /// -
+ /// 2
+ /// The table name, if applicable.
+ ///
+ /// -
+ /// 3
+ ///
+ /// Depends on .
+ /// When "IndexColumns", it is the index name; otherwise, it is the column name.
+ ///
+ ///
+ /// -
+ /// 4
+ ///
+ /// Depends on .
+ /// When "IndexColumns", it is the column name; otherwise, it is not used.
+ ///
+ ///
+ ///
+ ///
/// A DataTable of the specified collection
public override DataTable GetSchema(string collectionName, string[] restrictionValues)
{
CheckDisposed();