summaryrefslogtreecommitdiff
path: root/mysqlc
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-28 19:50:34 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-01-28 19:50:44 +0100
commit70539059dd2317afdf532d1e4a4a9524a154f773 (patch)
treea72241b326312d946a6ca79f8dd4e1ea3c8b7ca2 /mysqlc
parentac733a122c30961aef6a2ffc1b7e97df5be38588 (diff)
Remove double line spacing.
Diffstat (limited to 'mysqlc')
-rw-r--r--mysqlc/source/mysqlc_resultset.hxx48
-rw-r--r--mysqlc/source/mysqlc_resultsetmetadata.hxx9
2 files changed, 0 insertions, 57 deletions
diff --git a/mysqlc/source/mysqlc_resultset.hxx b/mysqlc/source/mysqlc_resultset.hxx
index 3595c92265c2..fbfa76b14990 100644
--- a/mysqlc/source/mysqlc_resultset.hxx
+++ b/mysqlc/source/mysqlc_resultset.hxx
@@ -118,7 +118,6 @@ namespace connectivity
throw(RuntimeException);
void SAL_CALL acquire() throw();
-
void SAL_CALL release() throw();
//XTypeProvider
@@ -131,37 +130,27 @@ namespace connectivity
// XResultSet
sal_Bool SAL_CALL next() throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL isBeforeFirst() throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL isAfterLast() throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL isFirst() throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL isLast() throw(SQLException, RuntimeException);
void SAL_CALL beforeFirst() throw(SQLException, RuntimeException);
-
void SAL_CALL afterLast() throw(SQLException, RuntimeException);
sal_Bool SAL_CALL first() throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL last() throw(SQLException, RuntimeException);
sal_Int32 SAL_CALL getRow() throw(SQLException, RuntimeException);
sal_Bool SAL_CALL absolute(sal_Int32 row) throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL relative(sal_Int32 rows) throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL previous() throw(SQLException, RuntimeException);
void SAL_CALL refreshRow() throw(SQLException, RuntimeException);
sal_Bool SAL_CALL rowUpdated() throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL rowInserted() throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL rowDeleted() throw(SQLException, RuntimeException);
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL getStatement()
@@ -172,34 +161,25 @@ namespace connectivity
OUString SAL_CALL getString(sal_Int32 column) throw(SQLException, RuntimeException);
sal_Bool SAL_CALL getBoolean(sal_Int32 column) throw(SQLException, RuntimeException);
-
sal_Int8 SAL_CALL getByte(sal_Int32 column) throw(SQLException, RuntimeException);
-
sal_Int16 SAL_CALL getShort(sal_Int32 column) throw(SQLException, RuntimeException);
-
sal_Int32 SAL_CALL getInt(sal_Int32 column) throw(SQLException, RuntimeException);
-
sal_Int64 SAL_CALL getLong(sal_Int32 column) throw(SQLException, RuntimeException);
float SAL_CALL getFloat(sal_Int32 column) throw(SQLException, RuntimeException);
-
double SAL_CALL getDouble(sal_Int32 column) throw(SQLException, RuntimeException);
::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getBytes(sal_Int32 column)
throw(SQLException, RuntimeException);
-
::com::sun::star::util::Date SAL_CALL getDate(sal_Int32 column)
throw(SQLException, RuntimeException);
-
::com::sun::star::util::Time SAL_CALL getTime(sal_Int32 column)
throw(SQLException, RuntimeException);
-
::com::sun::star::util::DateTime SAL_CALL getTimestamp(sal_Int32 column)
throw(SQLException, RuntimeException);
my_XInputStreamRef SAL_CALL getBinaryStream(sal_Int32 column)
throw(SQLException, RuntimeException);
-
my_XInputStreamRef SAL_CALL getCharacterStream(sal_Int32 column)
throw(SQLException, RuntimeException);
@@ -208,13 +188,10 @@ namespace connectivity
::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRef > SAL_CALL getRef(sal_Int32 column)
throw(SQLException, RuntimeException);
-
::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XBlob > SAL_CALL getBlob(sal_Int32 column)
throw(SQLException, RuntimeException);
-
::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XClob > SAL_CALL getClob(sal_Int32 column)
throw(SQLException, RuntimeException);
-
::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XArray > SAL_CALL getArray(sal_Int32 column)
throw(SQLException, RuntimeException);
@@ -235,58 +212,37 @@ namespace connectivity
// XResultSetUpdate
void SAL_CALL insertRow() throw(SQLException, RuntimeException);
-
void SAL_CALL updateRow() throw(SQLException, RuntimeException);
-
void SAL_CALL deleteRow() throw(SQLException, RuntimeException);
-
void SAL_CALL cancelRowUpdates() throw(SQLException, RuntimeException);
-
void SAL_CALL moveToInsertRow() throw(SQLException, RuntimeException);
-
void SAL_CALL moveToCurrentRow() throw(SQLException, RuntimeException);
// XRowUpdate
void SAL_CALL updateNull(sal_Int32 column) throw(SQLException, RuntimeException);
-
void SAL_CALL updateBoolean(sal_Int32 column, sal_Bool x) throw(SQLException, RuntimeException);
-
void SAL_CALL updateByte(sal_Int32 column, sal_Int8 x) throw(SQLException, RuntimeException);
-
void SAL_CALL updateShort(sal_Int32 column, sal_Int16 x) throw(SQLException, RuntimeException);
-
void SAL_CALL updateInt(sal_Int32 column, sal_Int32 x) throw(SQLException, RuntimeException);
-
void SAL_CALL updateLong(sal_Int32 column, sal_Int64 x) throw(SQLException, RuntimeException);
-
void SAL_CALL updateFloat(sal_Int32 column, float x) throw(SQLException, RuntimeException);
-
void SAL_CALL updateDouble(sal_Int32 column, double x) throw(SQLException, RuntimeException);
-
void SAL_CALL updateString(sal_Int32 column, const OUString& x)
throw(SQLException, RuntimeException);
-
void SAL_CALL updateBytes(sal_Int32 column, const ::com::sun::star::uno::Sequence< sal_Int8 >& x)
throw(SQLException, RuntimeException);
-
void SAL_CALL updateDate(sal_Int32 column, const ::com::sun::star::util::Date& x)
throw(SQLException, RuntimeException);
-
void SAL_CALL updateTime(sal_Int32 column, const ::com::sun::star::util::Time& x)
throw(SQLException, RuntimeException);
-
void SAL_CALL updateTimestamp(sal_Int32 column, const ::com::sun::star::util::DateTime& x)
throw(SQLException, RuntimeException);
-
void SAL_CALL updateBinaryStream(sal_Int32 column, const my_XInputStreamRef& x, sal_Int32 length)
throw(SQLException, RuntimeException);
-
void SAL_CALL updateCharacterStream(sal_Int32 column, const my_XInputStreamRef& x, sal_Int32 length)
throw(SQLException, RuntimeException);
-
void SAL_CALL updateObject(sal_Int32 column, const Any& x)
throw(SQLException, RuntimeException);
-
void SAL_CALL updateNumericObject(sal_Int32 column, const Any& x, sal_Int32 scale)
throw(SQLException, RuntimeException);
@@ -299,15 +255,11 @@ namespace connectivity
sal_Bool SAL_CALL moveToBookmark(const Any& bookmark)
throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL moveRelativeToBookmark(const Any& bookmark, sal_Int32 rows)
throw(SQLException, RuntimeException);
-
sal_Int32 SAL_CALL compareBookmarks(const Any& first, const Any& second)
throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL hasOrderedBookmarks() throw(SQLException, RuntimeException);
-
sal_Int32 SAL_CALL hashBookmark(const Any& bookmark)
throw(SQLException, RuntimeException);
diff --git a/mysqlc/source/mysqlc_resultsetmetadata.hxx b/mysqlc/source/mysqlc_resultsetmetadata.hxx
index 5ecf5d1de797..95dde3738b34 100644
--- a/mysqlc/source/mysqlc_resultsetmetadata.hxx
+++ b/mysqlc/source/mysqlc_resultsetmetadata.hxx
@@ -73,11 +73,8 @@ namespace connectivity
sal_Int32 SAL_CALL getColumnCount() throw(SQLException, RuntimeException);
sal_Bool SAL_CALL isAutoIncrement(sal_Int32 column) throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL isCaseSensitive(sal_Int32 column) throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL isSearchable(sal_Int32 column) throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL isCurrency(sal_Int32 column) throw(SQLException, RuntimeException);
sal_Int32 SAL_CALL isNullable(sal_Int32 column) throw(SQLException, RuntimeException);
@@ -87,17 +84,13 @@ namespace connectivity
sal_Int32 SAL_CALL getColumnDisplaySize(sal_Int32 column)throw(SQLException, RuntimeException);
OUString SAL_CALL getColumnLabel(sal_Int32 column) throw(SQLException, RuntimeException);
-
OUString SAL_CALL getColumnName(sal_Int32 column) throw(SQLException, RuntimeException);
-
OUString SAL_CALL getSchemaName(sal_Int32 column) throw(SQLException, RuntimeException);
sal_Int32 SAL_CALL getPrecision(sal_Int32 column) throw(SQLException, RuntimeException);
-
sal_Int32 SAL_CALL getScale(sal_Int32 column) throw(SQLException, RuntimeException);
OUString SAL_CALL getTableName(sal_Int32 column) throw(SQLException, RuntimeException);
-
OUString SAL_CALL getCatalogName(sal_Int32 column) throw(SQLException, RuntimeException);
sal_Int32 SAL_CALL getColumnType(sal_Int32 column) throw(SQLException, RuntimeException);
@@ -105,9 +98,7 @@ namespace connectivity
OUString SAL_CALL getColumnTypeName(sal_Int32 column) throw(SQLException, RuntimeException);
sal_Bool SAL_CALL isReadOnly(sal_Int32 column) throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL isWritable(sal_Int32 column) throw(SQLException, RuntimeException);
-
sal_Bool SAL_CALL isDefinitelyWritable(sal_Int32 column)throw(SQLException, RuntimeException);
OUString SAL_CALL getColumnServiceName(sal_Int32 column)throw(SQLException, RuntimeException);