Skip to content

Commit

Permalink
Fix for ODBC-169. Unknown token errors when attempting to access Fire…
Browse files Browse the repository at this point in the history
…bird from Excel. Catalogs are not supported by Firebird
  • Loading branch information
alexpotapchenko committed Nov 12, 2013
1 parent 47fec2b commit 2ddb965
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions IscDbc/IscDatabaseMetaData.cpp
Expand Up @@ -674,7 +674,7 @@ const char* IscDatabaseMetaData::getProcedureTerm()

const char* IscDatabaseMetaData::getCatalogTerm()
{
return "database";
return "";
}

bool IscDatabaseMetaData::isCatalogAtStart()
Expand All @@ -684,7 +684,7 @@ bool IscDatabaseMetaData::isCatalogAtStart()

const char* IscDatabaseMetaData::getCatalogSeparator()
{
return ".";
return "";
}

bool IscDatabaseMetaData::supportsSchemasInDataManipulation()
Expand Down

0 comments on commit 2ddb965

Please sign in to comment.