We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4881763 commit 4e17628Copy full SHA for 4e17628
Provider/src/FirebirdSql.Data.FirebirdClient/Common/IscHelper.cs
@@ -20,6 +20,7 @@
20
using System.Globalization;
21
using System.Resources;
22
using System.Text;
23
+using FirebirdSql.Data.FirebirdClient;
24
25
namespace FirebirdSql.Data.Common
26
{
@@ -40,6 +41,9 @@ public static List<object> ParseDatabaseInfo(byte[] buffer)
40
41
42
switch (type)
43
44
+ case IscCodes.isc_info_error:
45
+ throw FbException.Create("Received error response.");
46
+
47
case IscCodes.isc_info_allocation:
48
case IscCodes.isc_info_ods_version:
49
case IscCodes.isc_info_ods_minor_version:
0 commit comments