Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Enhance test case for the SQLiteCommand.Reset method. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d322dd9e02c56a043b536f5d62af780c |
User & Date: | mistachkin 2015-09-16 18:13:18.788 |
Context
2015-09-25
| ||
15:21 | Include Visual Studio 2015 in the NuGet targets file. Fix for [411e8bf7aa]. check-in: b1640c1f69 user: mistachkin tags: trunk | |
2015-09-16
| ||
18:13 | Enhance test case for the SQLiteCommand.Reset method. check-in: d322dd9e02 user: mistachkin tags: trunk | |
17:58 | For the interop assembly, move the included extensions after the non-extension code. check-in: 20c1de6d86 user: mistachkin tags: trunk | |
Changes
Changes to Tests/basic.eagle.
︙ | ︙ | |||
3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 | $command CommandText "SELECT x FROM t1 WHERE x < ? ORDER BY x;" $command Parameters.Add $parameter set dataReader(1) [$command -alias ExecuteReader] $dataReader(1) Read; lappend result [$dataReader(1) Item x] $dataReader(1) Read; lappend result [$dataReader(1) Item x] $command Reset; set dataReader(2) [$command -alias ExecuteReader] $dataReader(2) Read; lappend result [$dataReader(2) Item x] $dataReader(2) Read; lappend result [$dataReader(2) Item x] $command Reset; set dataReader(3) [$command -alias ExecuteReader] $dataReader(3) Read; lappend result [$dataReader(3) Item x] $dataReader(3) Read; lappend result [$dataReader(3) Item x] set result } -cleanup { unset -nocomplain dataReader parameter command connection freeDbConnection | > > > | 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 | $command CommandText "SELECT x FROM t1 WHERE x < ? ORDER BY x;" $command Parameters.Add $parameter set dataReader(1) [$command -alias ExecuteReader] $dataReader(1) Read; lappend result [$dataReader(1) Item x] $dataReader(1) Read; lappend result [$dataReader(1) Item x] $dataReader(1) Dispose $command Reset; set dataReader(2) [$command -alias ExecuteReader] $dataReader(2) Read; lappend result [$dataReader(2) Item x] $dataReader(2) Read; lappend result [$dataReader(2) Item x] $dataReader(2) Dispose $command Reset; set dataReader(3) [$command -alias ExecuteReader] $dataReader(3) Read; lappend result [$dataReader(3) Item x] $dataReader(3) Read; lappend result [$dataReader(3) Item x] $dataReader(3) Dispose set result } -cleanup { unset -nocomplain dataReader parameter command connection freeDbConnection |
︙ | ︙ |