System.Data.SQLite

Check-in [855a3004b1]
Login

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

Overview
Comment:Follow up previous check-in: one more test needs changes.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 855a3004b1a2d7e4d5b5e3cfe155f4a4a0007232
User & Date: mistachkin 2016-10-13 18:10:28.382
Context
2016-10-13
18:54
Fix typo in the VCX project files that was preventing the interop DLL from being copied during post-build in the 'ReleaseNativeOnly' configuration on x64. check-in: 1077726517 user: mistachkin tags: trunk
18:10
Follow up previous check-in: one more test needs changes. check-in: 855a3004b1 user: mistachkin tags: trunk
18:09
Test changes for Mono 4.6.x. check-in: 5955cd2f21 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to Tests/tkt-94252b9059.eagle.
57
58
59
60
61
62
63
64

65

66

67
68
69
70
71
72
73
  }

  set dataReader [sql execute -execute reader -format datareader \
      -alias $db "SELECT x, y, z FROM t1;"]

  $dataReader Read

  list [$dataReader GetDataTypeName 0] [$dataReader GetDataTypeName 1] \

      [$dataReader GetDataTypeName 2] [$dataReader GetFieldType 0] \

      [$dataReader GetFieldType 1] [$dataReader GetFieldType 2]

} -cleanup {
  unset -nocomplain dataReader

  cleanupDb $fileName

  unset -nocomplain db fileName
} -constraints {eagle command.object monoBug28 command.sql compile.DATA SQLite\







|
>
|
>
|
>







57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  }

  set dataReader [sql execute -execute reader -format datareader \
      -alias $db "SELECT x, y, z FROM t1;"]

  $dataReader Read

  list [$dataReader GetDataTypeName 0] \
      [$dataReader GetDataTypeName 1] \
      [$dataReader GetDataTypeName 2] \
      [$dataReader -tostring GetFieldType 0] \
      [$dataReader -tostring GetFieldType 1] \
      [$dataReader -tostring GetFieldType 2]
} -cleanup {
  unset -nocomplain dataReader

  cleanupDb $fileName

  unset -nocomplain db fileName
} -constraints {eagle command.object monoBug28 command.sql compile.DATA SQLite\