System.Data.SQLite

Check-in [98ec9470c6]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Add description for the test for ticket [d0116ee2c3].
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | tkt-d0116ee2c3
Files: files | file ages | folders
SHA1: 98ec9470c66d34a409ac79174f2cf9052f0f968f
User & Date: mistachkin 2014-04-10 19:47:23.370
Context
2014-04-16
21:00
Merge updates from trunk. Closed-Leaf check-in: f955bf7c48 user: mistachkin tags: tkt-d0116ee2c3
2014-04-10
19:47
Add description for the test for ticket [d0116ee2c3]. check-in: 98ec9470c6 user: mistachkin tags: tkt-d0116ee2c3
19:25
Fix typo in test case. check-in: aacf155c6c user: mistachkin tags: tkt-d0116ee2c3
Changes
Unified Diff Ignore Whitespace Patch
Changes to Tests/tkt-d0116ee2c3.eagle.
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
###############################################################################

package require System.Data.SQLite.Test
runSQLiteTestPrologue

###############################################################################

runTest {test tkt-d0116ee2c3-1.1 {} -setup {
  setupDb [set fileName tkt-d0116ee2c3-1.1.db]
} -body {
  sql execute $db {
    CREATE TABLE t1(x);
    INSERT INTO t1 (x) VALUES(1);
  }








|







16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
###############################################################################

package require System.Data.SQLite.Test
runSQLiteTestPrologue

###############################################################################

runTest {test tkt-d0116ee2c3-1.1 {setting Connection property} -setup {
  setupDb [set fileName tkt-d0116ee2c3-1.1.db]
} -body {
  sql execute $db {
    CREATE TABLE t1(x);
    INSERT INTO t1 (x) VALUES(1);
  }