User: vg      
Date: 05/02/16 09:28:59

Modified:
 /dba/connectivity/source/drivers/jdbc/
  PreparedStatement.cxx

Log:
 INTEGRATION: CWS dr33 (1.13.36); FILE MERGED
 2005/02/14 16:38:57 dr 1.13.36.1: #i42367# remove non-ASCII characters from 
C++ sources

File Changes:

Directory: /dba/connectivity/source/drivers/jdbc/
=================================================

File [changed]: PreparedStatement.cxx
Url: 
http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/jdbc/PreparedStatement.cxx?r1=1.13&r2=1.14
Delta lines:  +76 -76
---------------------
--- PreparedStatement.cxx       9 Nov 2004 12:13:11 -0000       1.13
+++ PreparedStatement.cxx       16 Feb 2005 17:28:56 -0000      1.14
@@ -119,7 +119,7 @@
        // die Klasse muss nur einmal geholt werden, daher statisch
        if( !theClass )
        {
-               SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+        SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht 
worden!");
                if( t.pEnv ) 
                {
                        jclass tempClass = 
t.pEnv->FindClass("java/sql/PreparedStatement"); OSL_ENSURE(tempClass,"Java : 
FindClass nicht erfolgreich!");
@@ -165,7 +165,7 @@
 sal_Bool SAL_CALL java_sql_PreparedStatement::execute(  ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
        jboolean out(sal_False);
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
 
@@ -188,7 +188,7 @@
 sal_Int32 SAL_CALL java_sql_PreparedStatement::executeUpdate(  ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
        jint out(0);
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
 
@@ -210,7 +210,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setString( sal_Int32 parameterIndex, 
const ::rtl::OUString& x ) throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){           // temporaere Variable initialisieren
                createStatement(t.pEnv);
                static char * cSignature = "(ILjava/lang/String;)V";
@@ -239,7 +239,7 @@
 ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSet > 
SAL_CALL java_sql_PreparedStatement::executeQuery(  ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
        jobject out(0);
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
 
@@ -262,7 +262,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setBoolean( sal_Int32 
parameterIndex, sal_Bool x ) throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -283,7 +283,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setByte( sal_Int32 parameterIndex, 
sal_Int8 x ) throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -304,7 +304,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setDate( sal_Int32 parameterIndex, 
const ::com::sun::star::util::Date& x ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                
@@ -331,7 +331,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setTime( sal_Int32 parameterIndex, 
const ::com::sun::star::util::Time& x ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                
@@ -358,7 +358,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setTimestamp( sal_Int32 
parameterIndex, const ::com::sun::star::util::DateTime& x ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                
@@ -383,7 +383,7 @@
 // -------------------------------------------------------------------------
 void SAL_CALL java_sql_PreparedStatement::setDouble( sal_Int32 parameterIndex, 
double x ) throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -404,7 +404,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setFloat( sal_Int32 parameterIndex, 
float x ) throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -425,7 +425,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setInt( sal_Int32 parameterIndex, 
sal_Int32 x ) throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -446,7 +446,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setLong( sal_Int32 parameterIndex, 
sal_Int64 x ) throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -467,7 +467,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setNull( sal_Int32 parameterIndex, 
sal_Int32 sqlType ) throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -488,7 +488,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setClob( sal_Int32 parameterIndex, 
const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XClob >& x ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -509,7 +509,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setBlob( sal_Int32 parameterIndex, 
const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XBlob >& x ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -530,7 +530,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setArray( sal_Int32 parameterIndex, 
const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XArray >& x ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -551,7 +551,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setRef( sal_Int32 parameterIndex, 
const ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XRef >& x ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                
@@ -573,7 +573,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setObjectWithInfo( sal_Int32 
parameterIndex, const ::com::sun::star::uno::Any& x, sal_Int32 targetSqlType, 
sal_Int32 scale ) throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                
@@ -595,7 +595,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setObjectNull( sal_Int32 
parameterIndex, sal_Int32 sqlType, const ::rtl::OUString& typeName ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                
@@ -629,7 +629,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setShort( sal_Int32 parameterIndex, 
sal_Int16 x ) throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -650,7 +650,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setBytes( sal_Int32 parameterIndex, 
const ::com::sun::star::uno::Sequence< sal_Int8 >& x ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                
@@ -675,7 +675,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setCharacterStream( sal_Int32 
parameterIndex, const ::com::sun::star::uno::Reference< 
::com::sun::star::io::XInputStream >& x, sal_Int32 length ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                
@@ -722,7 +722,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::setBinaryStream( sal_Int32 
parameterIndex, const ::com::sun::star::uno::Reference< 
::com::sun::star::io::XInputStream >& x, sal_Int32 length ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -786,7 +786,7 @@
 // -------------------------------------------------------------------------
 void SAL_CALL java_sql_PreparedStatement::clearBatch(  ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
 
@@ -807,7 +807,7 @@
 
 void SAL_CALL java_sql_PreparedStatement::addBatch( ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -828,7 +828,7 @@
 ::com::sun::star::uno::Sequence< sal_Int32 > SAL_CALL 
java_sql_PreparedStatement::executeBatch(  ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
        ::com::sun::star::uno::Sequence< sal_Int32 > aSeq;
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv ){
                createStatement(t.pEnv);
                // temporaere Variable initialisieren
@@ -856,7 +856,7 @@
 ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XResultSetMetaData > 
SAL_CALL java_sql_PreparedStatement::getMetaData(  ) 
throw(::com::sun::star::sdbc::SQLException, 
::com::sun::star::uno::RuntimeException)
 {
        jobject out(0);
-       SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel�scht 
worden!");
+    SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!");
        if( t.pEnv )
        {
                createStatement(t.pEnv);




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to