summaryrefslogtreecommitdiff
path: root/mysqlc/source/mysqlc_resultsetmetadata.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'mysqlc/source/mysqlc_resultsetmetadata.cxx')
-rw-r--r--mysqlc/source/mysqlc_resultsetmetadata.cxx21
1 files changed, 0 insertions, 21 deletions
diff --git a/mysqlc/source/mysqlc_resultsetmetadata.cxx b/mysqlc/source/mysqlc_resultsetmetadata.cxx
index 7e5e043c4be6..0cb91f735821 100644
--- a/mysqlc/source/mysqlc_resultsetmetadata.cxx
+++ b/mysqlc/source/mysqlc_resultsetmetadata.cxx
@@ -33,7 +33,6 @@ OResultSetMetaData::~OResultSetMetaData()
{
}
-
sal_Int32 SAL_CALL OResultSetMetaData::getColumnDisplaySize(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -49,7 +48,6 @@ sal_Int32 SAL_CALL OResultSetMetaData::getColumnDisplaySize(sal_Int32 column)
return 0; // fool compiler
}
-
sal_Int32 SAL_CALL OResultSetMetaData::getColumnType(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -85,7 +83,6 @@ sal_Int32 SAL_CALL OResultSetMetaData::getColumnCount()
return 0; // fool compiler
}
-
sal_Bool SAL_CALL OResultSetMetaData::isCaseSensitive(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -102,7 +99,6 @@ sal_Bool SAL_CALL OResultSetMetaData::isCaseSensitive(sal_Int32 column)
return sal_False; // fool compiler
}
-
OUString SAL_CALL OResultSetMetaData::getSchemaName(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -119,7 +115,6 @@ OUString SAL_CALL OResultSetMetaData::getSchemaName(sal_Int32 column)
return OUString(); // fool compiler
}
-
OUString SAL_CALL OResultSetMetaData::getColumnName(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -136,7 +131,6 @@ OUString SAL_CALL OResultSetMetaData::getColumnName(sal_Int32 column)
return OUString(); // fool compiler
}
-
OUString SAL_CALL OResultSetMetaData::getTableName(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -153,7 +147,6 @@ OUString SAL_CALL OResultSetMetaData::getTableName(sal_Int32 column)
return OUString(); // fool compiler
}
-
OUString SAL_CALL OResultSetMetaData::getCatalogName(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -170,7 +163,6 @@ OUString SAL_CALL OResultSetMetaData::getCatalogName(sal_Int32 column)
return OUString(); // fool compiler
}
-
OUString SAL_CALL OResultSetMetaData::getColumnTypeName(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -187,7 +179,6 @@ OUString SAL_CALL OResultSetMetaData::getColumnTypeName(sal_Int32 column)
return OUString(); // fool compiler
}
-
OUString SAL_CALL OResultSetMetaData::getColumnLabel(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -204,7 +195,6 @@ OUString SAL_CALL OResultSetMetaData::getColumnLabel(sal_Int32 column)
return OUString(); // fool compiler
}
-
OUString SAL_CALL OResultSetMetaData::getColumnServiceName(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -215,7 +205,6 @@ OUString SAL_CALL OResultSetMetaData::getColumnServiceName(sal_Int32 column)
return aRet;
}
-
sal_Bool SAL_CALL OResultSetMetaData::isCurrency(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -232,7 +221,6 @@ sal_Bool SAL_CALL OResultSetMetaData::isCurrency(sal_Int32 column)
return sal_False; // fool compiler
}
-
sal_Bool SAL_CALL OResultSetMetaData::isAutoIncrement(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -249,7 +237,6 @@ sal_Bool SAL_CALL OResultSetMetaData::isAutoIncrement(sal_Int32 column)
return sal_False; // fool compiler
}
-
sal_Bool SAL_CALL OResultSetMetaData::isSigned(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -266,7 +253,6 @@ sal_Bool SAL_CALL OResultSetMetaData::isSigned(sal_Int32 column)
return sal_False; // fool compiler
}
-
sal_Int32 SAL_CALL OResultSetMetaData::getPrecision(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -283,7 +269,6 @@ sal_Int32 SAL_CALL OResultSetMetaData::getPrecision(sal_Int32 column)
return 0; // fool compiler
}
-
sal_Int32 SAL_CALL OResultSetMetaData::getScale(sal_Int32 column)
throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException, std::exception)
{
@@ -299,7 +284,6 @@ sal_Int32 SAL_CALL OResultSetMetaData::getScale(sal_Int32 column)
return 0; // fool compiler
}
-
sal_Int32 SAL_CALL OResultSetMetaData::isNullable(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -316,7 +300,6 @@ sal_Int32 SAL_CALL OResultSetMetaData::isNullable(sal_Int32 column)
return sal_False; // fool compiler
}
-
sal_Bool SAL_CALL OResultSetMetaData::isSearchable(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -333,7 +316,6 @@ sal_Bool SAL_CALL OResultSetMetaData::isSearchable(sal_Int32 column)
return sal_False; // fool compiler
}
-
sal_Bool SAL_CALL OResultSetMetaData::isReadOnly(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -350,7 +332,6 @@ sal_Bool SAL_CALL OResultSetMetaData::isReadOnly(sal_Int32 column)
return sal_False; // fool compiler
}
-
sal_Bool SAL_CALL OResultSetMetaData::isDefinitelyWritable(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -367,7 +348,6 @@ sal_Bool SAL_CALL OResultSetMetaData::isDefinitelyWritable(sal_Int32 column)
return sal_False; // fool compiler
}
-
sal_Bool SAL_CALL OResultSetMetaData::isWritable(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
@@ -384,7 +364,6 @@ sal_Bool SAL_CALL OResultSetMetaData::isWritable(sal_Int32 column)
return sal_False; // fool compiler
}
-
void OResultSetMetaData::checkColumnIndex(sal_Int32 columnIndex)
throw (SQLException, RuntimeException)
{