Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add doc comments for the ToFullPath connection string property. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c9ec60e016d8dd581f10f3aaa1632612 |
User & Date: | mistachkin 2012-08-24 10:09:08.192 |
Context
2012-08-28
| ||
01:03 | Remove one set of surrounding single or double quotes from the data source value. This is needed because the connection string may have been built using the SQLiteConnectionStringBuilder class, which reuses connection string construction logic from inside the .NET Framwork itself. Fix for ticket [8c3bee31c8]. check-in: 7d432770a9 user: mistachkin tags: trunk | |
2012-08-24
| ||
10:09 | Add doc comments for the ToFullPath connection string property. check-in: c9ec60e016 user: mistachkin tags: trunk | |
10:00 | Add support for testing the sqlite3_win32_set_directory function. Also, add the ToFullPath connection string property. check-in: 7e3aa2f8bb user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteConnection.cs.
︙ | ︙ | |||
182 183 184 185 186 187 188 189 190 191 192 193 194 195 | /// <description> /// <b>True</b> - Apply the default connection settings to the opened database.<br/> /// <b>False</b> - Skip applying the default connection settings to the opened database. /// </description> /// <description>N</description> /// <description>True</description> /// </item> /// </list> /// </remarks> public sealed partial class SQLiteConnection : DbConnection, ICloneable { /// <summary> /// The default "stub" (i.e. placeholder) base schema name to use when /// returning column schema information. Used as the initial value of | > > > > > > > > > | 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | /// <description> /// <b>True</b> - Apply the default connection settings to the opened database.<br/> /// <b>False</b> - Skip applying the default connection settings to the opened database. /// </description> /// <description>N</description> /// <description>True</description> /// </item> /// <item> /// <description>ToFullPath</description> /// <description> /// <b>True</b> - Attempt to expand the data source file name to a fully qualified path before opening.<br/> /// <b>False</b> - Skip attempting to expand the data source file name to a fully qualified path before opening. /// </description> /// <description>N</description> /// <description>True</description> /// </item> /// </list> /// </remarks> public sealed partial class SQLiteConnection : DbConnection, ICloneable { /// <summary> /// The default "stub" (i.e. placeholder) base schema name to use when /// returning column schema information. Used as the initial value of |
︙ | ︙ | |||
942 943 944 945 946 947 948 949 950 951 952 953 954 955 | /// </item> /// <item> /// <description>SetDefaults</description> /// <description> /// <b>True</b> - Apply the default connection settings to the opened database.<br/> /// <b>False</b> - Skip applying the default connection settings to the opened database. /// </description> /// <description>N</description> /// <description>True</description> /// </item> /// </list> /// </remarks> #if !PLATFORM_COMPACTFRAMEWORK [RefreshProperties(RefreshProperties.All), DefaultValue("")] | > > > > > > > > > | 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 | /// </item> /// <item> /// <description>SetDefaults</description> /// <description> /// <b>True</b> - Apply the default connection settings to the opened database.<br/> /// <b>False</b> - Skip applying the default connection settings to the opened database. /// </description> /// <description>N</description> /// <description>True</description> /// </item> /// <item> /// <description>ToFullPath</description> /// <description> /// <b>True</b> - Attempt to expand the data source file name to a fully qualified path before opening.<br/> /// <b>False</b> - Skip attempting to expand the data source file name to a fully qualified path before opening. /// </description> /// <description>N</description> /// <description>True</description> /// </item> /// </list> /// </remarks> #if !PLATFORM_COMPACTFRAMEWORK [RefreshProperties(RefreshProperties.All), DefaultValue("")] |
︙ | ︙ |
Changes to Tests/basic.eagle.
︙ | ︙ | |||
1620 1621 1622 1623 1624 1625 1626 | unset -nocomplain result db fileName } -constraints \ {eagle monoBug28 command.sql compile.DATA SQLite System.Data.SQLite} -result \ {4096 2048 1 1 4096 wal 1}} ############################################################################### | | | 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 | unset -nocomplain result db fileName } -constraints \ {eagle monoBug28 command.sql compile.DATA SQLite System.Data.SQLite} -result \ {4096 2048 1 1 4096 wal 1}} ############################################################################### runTest {test data-1.33 {sqlite3_win32_set_directory function} -setup { set directory(base) [getDatabaseDirectory] if {[string length $directory(base)] == 0 || \ ![file exists $directory(base)] || \ ![file isdirectory $directory(base)]} then { error [appendArgs "base directory \"" $directory(base) "\" is invalid"] } |
︙ | ︙ |