System.Data.SQLite

Check-in [b8d9f46daa]
Login

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

Overview
Comment:Merge updates from trunk.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | netStandard20
Files: files | file ages | folders
SHA1: b8d9f46daac43c522d72aec7fb17f95b09c9fe9d
User & Date: mistachkin 2018-04-25 21:20:31.126
Context
2018-04-25
22:33
Enhance the native library pre-loader platform abstraction subsystem to support querying the machine name. Closed-Leaf check-in: 2e3be13ffa user: mistachkin tags: netStandard20
21:20
Merge updates from trunk. check-in: b8d9f46daa user: mistachkin tags: netStandard20
21:19
Change test suite infrastructure for a pending upstream change in order to support .NET Core 2.0. check-in: 08b72a8690 user: mistachkin tags: trunk
18:20
Merge updates from trunk. check-in: f72560a85a user: mistachkin tags: netStandard20
Changes
Unified Diff Ignore Whitespace Patch
Changes to lib/System.Data.SQLite/common.eagle.
4933
4934
4935
4936
4937
4938
4939

4940
4941


4942
4943
4944
4945

4946
4947
4948
4949
4950
4951
4952
        }

        #
        # NOTE: Grab the list of managed assemblies for the current process
        #       and report on the System.Data.SQLite related ones.
        #
        if {[haveSQLiteObjectCommand]} then {

          set assemblies [object invoke Utility GetAssemblies]



          object foreach assembly $assemblies {
            if {[string match \{System.Data.SQLite* $assembly]} then {
              tputs $::test_channel [appendArgs \
                  "---- found loaded assembly: " $assembly \n]

            }
          }
        }

        catch {
          tputs $::test_channel \
              "---- define constants for \"System.Data.SQLite\"... "







>
|
|
>
>
|
|
|
|
>







4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
        }

        #
        # NOTE: Grab the list of managed assemblies for the current process
        #       and report on the System.Data.SQLite related ones.
        #
        if {[haveSQLiteObjectCommand]} then {
          if {[catch {
            object invoke Utility GetAssemblies
          } assemblies] == 0 || [catch {
            object invoke AppDomain.CurrentDomain GetAssemblies
          } assemblies] == 0} then {
            object foreach assembly $assemblies {
              if {[string match \{System.Data.SQLite* $assembly]} then {
                tputs $::test_channel [appendArgs \
                    "---- found loaded assembly: " $assembly \n]
              }
            }
          }
        }

        catch {
          tputs $::test_channel \
              "---- define constants for \"System.Data.SQLite\"... "