Index: .fossil-settings/ignore-glob ================================================================== --- .fossil-settings/ignore-glob +++ .fossil-settings/ignore-glob @@ -1,2 +1,7 @@ *.mistachkin.eagle +*.sln Externals/Eagle/bin/Eagle*.pdb +SQLite.Interop/*.vcxproj +SQLite.Interop/*.vcxproj.filters +System.Data.SQLite/*.csproj +testce/*.csproj Index: Doc/Extra/dbfactorysupport.html ================================================================== --- Doc/Extra/dbfactorysupport.html +++ Doc/Extra/dbfactorysupport.html @@ -83,11 +83,11 @@ <DbProviderFactories> <remove invariant="System.Data.SQLite"/> <add name="SQLite Data Provider" invariant="System.Data.SQLite" description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite, - Version=1.0.83.0, Culture=neutral, + Version=1.0.85.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139"/> </DbProviderFactories> </system.data> </configuration> Index: Doc/Extra/environment.html ================================================================== --- Doc/Extra/environment.html +++ Doc/Extra/environment.html @@ -72,10 +72,19 @@ the native library pre-loading will attempt to load the native SQLite library from architecture-specific (e.g. "x86", "amd64", "x64") or platform-specific (e.g. "Win32") directories that reside underneath the application base directory. + + No_SQLiteFunctions + If this environment variable is set [to anything], the initial + search for types in all loaded assemblies that are tagged with the + SQLiteFunction attribute will be skipped. Normally, this search is + conducted only once per application domain by the static constructor + of the SQLiteFunction class; however, these implementation details + are subject to change. + PreLoadSQLite_BaseDirectory If this environment variable is set [to anything], it will be used instead of the application base directory by the native library pre-loader. This environment variable can be especially @@ -88,10 +97,18 @@ If this environment variable is set [to anything], it will be used instead of the processor architecture value contained in the PROCESSOR_ARCHITECTURE environment variable to help build the path of the native library to pre-load. + + PreLoadSQLite_UseAssemblyDirectory + If this environment variable is set [to anything], the location + of the currently executing assembly (i.e. the one containing all the + managed components for System.Data.SQLite) will be used as the basis + for locating the the native library to pre-load (i.e. instead of + using the application domain base directory). + PROCESSOR_ARCHITECTURE This environment variable is normally set by the operating system itself and should reflect the native processor architecture of the current process (e.g. a 32-bit x86 application running on a Index: Doc/Extra/version.html ================================================================== --- Doc/Extra/version.html +++ Doc/Extra/version.html @@ -41,11 +41,35 @@

Version History

-

1.0.83.0 - December XX, 2012 (release scheduled)

+

1.0.85.0 - March XX, 2013 (release scheduled)

+ +

1.0.84.0 - January 9, 2013

+ +

1.0.83.0 - December 29, 2012