Skip to content

Commit

Permalink
Fixed DNET-182.
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed Oct 9, 2008
1 parent 5ac6c74 commit 4311892
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NETProvider/source/FirebirdSql/Data/Schema/FbColumns.cs
Expand Up @@ -139,7 +139,7 @@ protected override DataTable ProcessResult(DataTable schema)
}

row["IS_NULLABLE"] = (row["COLUMN_NULLABLE"] == DBNull.Value);
row["IS_ARRAY"] = (row["COLUMN_ARRAY"] == DBNull.Value);
row["IS_ARRAY"] = (row["COLUMN_ARRAY"] != DBNull.Value);

FbDbType dbType = (FbDbType)TypeHelper.GetDbDataType(blrType, subType, scale);
row["COLUMN_DATA_TYPE"] = TypeHelper.GetDataTypeName((DbDataType)dbType).ToLower(CultureInfo.InvariantCulture);
Expand Down
2 changes: 1 addition & 1 deletion NETProvider/source/FirebirdSql/Data/Schema/FbDomains.cs
Expand Up @@ -120,7 +120,7 @@ protected override DataTable ProcessResult(DataTable schema)
}

row["IS_NULLABLE"] = (row["COLUMN_NULLABLE"] == DBNull.Value);
row["IS_ARRAY"] = (row["COLUMN_ARRAY"] == DBNull.Value);
row["IS_ARRAY"] = (row["COLUMN_ARRAY"] != DBNull.Value);

FbDbType dbType = (FbDbType)TypeHelper.GetDbDataType(blrType, subType, scale);
row["DOMAIN_DATA_TYPE"] = TypeHelper.GetDataTypeName((DbDataType)dbType).ToLower(CultureInfo.InvariantCulture);
Expand Down
Expand Up @@ -132,7 +132,7 @@ protected override DataTable ProcessResult(DataTable schema)
}

row["IS_NULLABLE"] = (row["COLUMN_NULLABLE"] == DBNull.Value);
row["IS_ARRAY"] = (row["COLUMN_ARRAY"] == DBNull.Value);
row["IS_ARRAY"] = (row["COLUMN_ARRAY"] != DBNull.Value);

FbDbType dbType = (FbDbType)TypeHelper.GetDbDataType(blrType, subType, scale);
row["COLUMN_DATA_TYPE"] = TypeHelper.GetDataTypeName((DbDataType)dbType).ToLower(CultureInfo.CurrentUICulture);
Expand Down

0 comments on commit 4311892

Please sign in to comment.