Index: System.Data.SQLite/SQLiteConnection.cs ================================================================== --- System.Data.SQLite/SQLiteConnection.cs +++ System.Data.SQLite/SQLiteConnection.cs @@ -3897,18 +3897,20 @@ #else if (FindKey(opts, "HexPassword", DefaultHexPassword) != null) { throw new SQLiteException(SQLiteErrorCode.Error, "Cannot use \"HexPassword\" connection string property: " + - "library was not built with encryption support"); + "library was not built with encryption support, please " + + "see \"https://www.sqlite.org/see\" for more information"); } if (FindKey(opts, "Password", DefaultPassword) != null) { throw new SQLiteException(SQLiteErrorCode.Error, "Cannot use \"Password\" connection string property: " + - "library was not built with encryption support"); + "library was not built with encryption support, please " + + "see \"https://www.sqlite.org/see\" for more information"); } #endif if (!fullUri) _dataSource = Path.GetFileNameWithoutExtension(fileName); Index: Tests/basic.eagle ================================================================== --- Tests/basic.eagle +++ Tests/basic.eagle @@ -4737,11 +4737,12 @@ unset -nocomplain db fileName } -constraints [fixConstraints {eagle !System.Data.SQLite.Encryption monoBug28\ command.sql compile.DATA SQLite System.Data.SQLite}] -result {1 {SQL logic\ error -- Cannot use "Password" connection string property: library was not\ -built with encryption support}}} +built with encryption support, please see "https://www.sqlite.org/see" for more\ +information}}} ############################################################################### runTest {test data-1.92 {HexPassword error (no encryption support)} -body { list [catch { @@ -4752,11 +4753,12 @@ unset -nocomplain db fileName } -constraints [fixConstraints {eagle !System.Data.SQLite.Encryption monoBug28\ command.sql compile.DATA SQLite System.Data.SQLite}] -result {1 {SQL logic\ error -- Cannot use "HexPassword" connection string property: library was not\ -built with encryption support}}} +built with encryption support, please see "https://www.sqlite.org/see" for more\ +information}}} ############################################################################### reportSQLiteResources $test_channel