diff options
-rw-r--r-- | mysqlc/source/mysqlc_connection.cxx | 16 | ||||
-rw-r--r-- | mysqlc/source/mysqlc_general.hxx | 6 |
2 files changed, 11 insertions, 11 deletions
diff --git a/mysqlc/source/mysqlc_connection.cxx b/mysqlc/source/mysqlc_connection.cxx index a62716ee444a..267f16558233 100644 --- a/mysqlc/source/mysqlc_connection.cxx +++ b/mysqlc/source/mysqlc_connection.cxx @@ -26,14 +26,6 @@ * for a copy of the LGPLv3 License. ************************************************************************/ -#include <tools/preextstl.h> -#include <cppconn/driver.h> -#include <cppconn/connection.h> -#include <cppconn/statement.h> -#include <cppconn/metadata.h> -#include <cppconn/exception.h> -#include <tools/postextstl.h> - #include "mysqlc_connection.hxx" #include "mysqlc_databasemetadata.hxx" @@ -43,6 +35,14 @@ #include "mysqlc_preparedstatement.hxx" #include "mysqlc_general.hxx" +#include <tools/preextstl.h> +#include <cppconn/driver.h> +#include <cppconn/connection.h> +#include <cppconn/statement.h> +#include <cppconn/metadata.h> +#include <cppconn/exception.h> +#include <tools/postextstl.h> + #include <com/sun/star/sdbc/ColumnValue.hpp> #include <com/sun/star/sdbc/XRow.hpp> #include <com/sun/star/sdbc/TransactionIsolation.hpp> diff --git a/mysqlc/source/mysqlc_general.hxx b/mysqlc/source/mysqlc_general.hxx index 166c7f2e76e6..632fb75dd65f 100644 --- a/mysqlc/source/mysqlc_general.hxx +++ b/mysqlc/source/mysqlc_general.hxx @@ -30,13 +30,13 @@ #ifndef _MYSQLC_GENERAL_ #define _MYSQLC_GENERAL_ +#include <com/sun/star/uno/XInterface.hpp> +#include <com/sun/star/sdbc/SQLException.hpp> + #include <tools/preextstl.h> #include <cppconn/exception.h> #include <tools/postextstl.h> -#include <com/sun/star/uno/XInterface.hpp> -#include <com/sun/star/sdbc/SQLException.hpp> - namespace mysqlc_sdbc_driver { rtl::OUString getStringFromAny(const ::com::sun::star::uno::Any& _rAny); |