Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Improve documentation for the 'restrictionValues' parameter to SQLiteConnetion.GetSchema. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4be7ad3120577d3048d296532560a5a9 |
User & Date: | mistachkin 2015-05-16 03:33:03.833 |
Context
2015-05-19
| ||
18:24 | Make sure enabling UseUTF16Encoding sets the schema encoding to UTF-16. Fix for [7c151a2f0e]. check-in: 749d5af8d3 user: mistachkin tags: trunk | |
2015-05-16
| ||
03:33 | Improve documentation for the 'restrictionValues' parameter to SQLiteConnetion.GetSchema. check-in: 4be7ad3120 user: mistachkin tags: trunk | |
02:26 | Stop using the specific version for the EF6 Nuget package. Fix for [abf2be8a23]. check-in: a58c97761a user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
3656 3657 3658 3659 3660 3661 3662 | CheckDisposed(); return GetSchema(collectionName, new string[0]); } /// <summary> /// Retrieves schema information using the specified constraint(s) for the specified collection /// </summary> | | | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 | CheckDisposed(); return GetSchema(collectionName, new string[0]); } /// <summary> /// Retrieves schema information using the specified constraint(s) for the specified collection /// </summary> /// <param name="collectionName">The collection to retrieve.</param> /// <param name="restrictionValues"> /// The restrictions to impose. Typically, this may include: /// <list type="table"> /// <listheader> /// <term>restrictionValues element index</term> /// <term>usage</term> /// </listheader> /// <item> /// <description>0</description> /// <description>The database (or catalog) name, if applicable.</description> /// </item> /// <item> /// <description>1</description> /// <description>The schema name. This is not used by this provider.</description> /// </item> /// <item> /// <description>2</description> /// <description>The table name, if applicable.</description> /// </item> /// <item> /// <description>3</description> /// <description> /// Depends on <paramref name="collectionName" />. /// When "IndexColumns", it is the index name; otherwise, it is the column name. /// </description> /// </item> /// <item> /// <description>4</description> /// <description> /// Depends on <paramref name="collectionName" />. /// When "IndexColumns", it is the column name; otherwise, it is not used. /// </description> /// </item> /// </list> /// </param> /// <returns>A DataTable of the specified collection</returns> public override DataTable GetSchema(string collectionName, string[] restrictionValues) { CheckDisposed(); if (_connectionState != ConnectionState.Open) throw new InvalidOperationException(); |
︙ | ︙ |