Files
libreoffice/connectivity/source/drivers/jdbc/PreparedStatement.cxx

931 lines
40 KiB
C++
Raw Normal View History

2000-09-18 15:18:56 +00:00
/*************************************************************************
*
* $RCSfile: PreparedStatement.cxx,v $
*
* $Revision: 1.13 $
2000-09-18 15:18:56 +00:00
*
* last change: $Author: hr $ $Date: 2004-11-09 12:13:11 $
2000-09-18 15:18:56 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifndef _CONNECTIVITY_JAVA_SQL_PREPAREDSTATEMENT_HXX_
#include "java/sql/PreparedStatement.hxx"
#endif
#ifndef _CONNECTIVITY_JAVA_SQL_RESULTSET_HXX_
#include "java/sql/ResultSet.hxx"
#endif
2001-01-09 11:58:40 +00:00
#ifndef _CONNECTIVITY_JAVA_SQL_RESULTSETMETADATA_HXX_
#include "java/sql/ResultSetMetaData.hxx"
#endif
2000-09-18 15:18:56 +00:00
#ifndef _CONNECTIVITY_JAVA_SQL_CONNECTION_HXX_
#include "java/sql/Connection.hxx"
#endif
#ifndef _CONNECTIVITY_JAVA_SQL_TIMESTAMP_HXX_
#include "java/sql/Timestamp.hxx"
#endif
#ifndef _CONNECTIVITY_JAVA_TOOLS_HXX_
#include "java/tools.hxx"
#endif
#ifndef _CPPUHELPER_TYPEPROVIDER_HXX_
#include <cppuhelper/typeprovider.hxx>
#endif
2000-10-11 09:48:50 +00:00
#ifndef _COMPHELPER_SEQUENCE_HXX_
#include <comphelper/sequence.hxx>
2000-09-18 15:18:56 +00:00
#endif
#ifndef _CONNECTIVITY_DBTOOLS_HXX_
#include "connectivity/dbtools.hxx"
#endif
#ifndef _DBHELPER_DBEXCEPTION_HXX_
#include "connectivity/dbexception.hxx"
#endif
2000-09-18 15:18:56 +00:00
using namespace connectivity;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::sdbc;
using namespace ::com::sun::star::container;
using namespace ::com::sun::star::lang;
//**************************************************************
//************ Class: java.sql.PreparedStatement
//**************************************************************
IMPLEMENT_SERVICE_INFO(java_sql_PreparedStatement,"com.sun.star.sdbcx.JPreparedStatement","com.sun.star.sdbc.PreparedStatement");
java_sql_PreparedStatement::java_sql_PreparedStatement( JNIEnv * pEnv, java_sql_Connection* _pCon,const ::rtl::OUString& sql )
: OStatement_BASE2( pEnv, _pCon )
{
m_sSqlStatement = sql;
}
// -----------------------------------------------------------------------------
2000-09-18 15:18:56 +00:00
jclass java_sql_PreparedStatement::theClass = 0;
java_sql_PreparedStatement::~java_sql_PreparedStatement()
{
}
// -----------------------------------------------------------------------------
2000-09-18 15:18:56 +00:00
jclass java_sql_PreparedStatement::getMyClass()
{
// die Klasse muss nur einmal geholt werden, daher statisch
2001-05-17 08:15:34 +00:00
if( !theClass )
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2001-05-17 08:15:34 +00:00
if( t.pEnv )
{
jclass tempClass = t.pEnv->FindClass("java/sql/PreparedStatement"); OSL_ENSURE(tempClass,"Java : FindClass nicht erfolgreich!");
jclass globClass = (jclass)t.pEnv->NewGlobalRef( tempClass );
t.pEnv->DeleteLocalRef( tempClass );
saveClassRef( globClass );
}
2000-09-18 15:18:56 +00:00
}
return theClass;
}
// -------------------------------------------------------------------------
void java_sql_PreparedStatement::saveClassRef( jclass pClass )
{
if( pClass==0 )
2000-09-18 15:18:56 +00:00
return;
// der uebergebe Klassen-Handle ist schon global, daher einfach speichern
theClass = pClass;
}
// -------------------------------------------------------------------------
::com::sun::star::uno::Any SAL_CALL java_sql_PreparedStatement::queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException)
{
::com::sun::star::uno::Any aRet = OStatement_BASE2::queryInterface(rType);
return aRet.hasValue() ? aRet : ::cppu::queryInterface( rType,
2000-09-18 15:18:56 +00:00
static_cast< XPreparedStatement*>(this),
static_cast< XParameters*>(this),
static_cast< XResultSetMetaDataSupplier*>(this),
2000-09-18 15:18:56 +00:00
static_cast< XPreparedBatchExecution*>(this));
}
// -------------------------------------------------------------------------
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL java_sql_PreparedStatement::getTypes( ) throw(::com::sun::star::uno::RuntimeException)
{
::cppu::OTypeCollection aTypes( ::getCppuType( (const ::com::sun::star::uno::Reference< XPreparedStatement > *)0 ),
::getCppuType( (const ::com::sun::star::uno::Reference< XParameters > *)0 ),
2001-01-09 11:58:40 +00:00
::getCppuType( (const ::com::sun::star::uno::Reference< XResultSetMetaDataSupplier > *)0 ),
2000-09-18 15:18:56 +00:00
::getCppuType( (const ::com::sun::star::uno::Reference< XPreparedBatchExecution > *)0 ));
2000-10-11 09:48:50 +00:00
return ::comphelper::concatSequences(aTypes.getTypes(),OStatement_BASE2::getTypes());
2000-09-18 15:18:56 +00:00
}
// -------------------------------------------------------------------------
sal_Bool SAL_CALL java_sql_PreparedStatement::execute( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
jboolean out(sal_False);
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "()Z";
static char * cMethodName = "execute";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
out = t.pEnv->CallBooleanMethod( object, mID);
ThrowSQLException(t.pEnv,*this);
} //mID
} //t.pEnv
return out;
}
// -------------------------------------------------------------------------
sal_Int32 SAL_CALL java_sql_PreparedStatement::executeUpdate( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
jint out(0);
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "()I";
static char * cMethodName = "executeUpdate";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
out = t.pEnv->CallIntMethod( object, mID);
ThrowSQLException(t.pEnv,*this);
} //mID
} //t.pEnv
return (sal_Int32)out;
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
if( t.pEnv ){ // temporaere Variable initialisieren
createStatement(t.pEnv);
static char * cSignature = "(ILjava/lang/String;)V";
static char * cMethodName = "setString";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
jstring str = convertwchar_tToJavaString(t.pEnv,x);
t.pEnv->CallVoidMethod( object, mID, parameterIndex,str);
2000-09-18 15:18:56 +00:00
// und aufraeumen
t.pEnv->DeleteLocalRef(str);
ThrowSQLException(t.pEnv,*this);
2000-09-18 15:18:56 +00:00
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XConnection > SAL_CALL java_sql_PreparedStatement::getConnection( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
return (Reference< XConnection >)m_pConnection;
}
// -------------------------------------------------------------------------
::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);
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "()Ljava/sql/ResultSet;";
static char * cMethodName = "executeQuery";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
out = t.pEnv->CallObjectMethod( object, mID);
ThrowSQLException(t.pEnv,*this);
} //mID
} //t.pEnv
// ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!!
return out==0 ? 0 : new java_sql_ResultSet( t.pEnv, out );
}
// -------------------------------------------------------------------------
void SAL_CALL java_sql_PreparedStatement::setBoolean( sal_Int32 parameterIndex, sal_Bool x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(IZ)V";
static char * cMethodName = "setBoolean";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,x);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
void SAL_CALL java_sql_PreparedStatement::setByte( sal_Int32 parameterIndex, sal_Int8 x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(IB)V";
static char * cMethodName = "setByte";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,x);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(ILjava/sql/Date;)V";
static char * cMethodName = "setDate";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
jvalue args[1];
// Parameter konvertieren
java_sql_Date aT(x);
args[0].l = aT.getJavaObject();
t.pEnv->CallVoidMethod( object, mID, parameterIndex,args[0].l);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(ILjava/sql/Time;)V";
static char * cMethodName = "setTime";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
jvalue args[2];
// Parameter konvertieren
args[0].i = (sal_Int32)parameterIndex;
java_sql_Time aT(x);
args[1].l = aT.getJavaObject();
t.pEnv->CallVoidMethod( object, mID, parameterIndex,args[1].l);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(ILjava/sql/Timestamp;)V";
static char * cMethodName = "setTimestamp";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
jvalue args[1];
// Parameter konvertieren
java_sql_Timestamp aT(x);
args[0].l = aT.getJavaObject();
t.pEnv->CallVoidMethod( object, mID, parameterIndex,args[0].l);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
void SAL_CALL java_sql_PreparedStatement::setDouble( sal_Int32 parameterIndex, double x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(ID)V";
static char * cMethodName = "setDouble";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,x);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
void SAL_CALL java_sql_PreparedStatement::setFloat( sal_Int32 parameterIndex, float x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(IF)V";
static char * cMethodName = "setFloat";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,x);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
void SAL_CALL java_sql_PreparedStatement::setInt( sal_Int32 parameterIndex, sal_Int32 x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(II)V";
static char * cMethodName = "setInt";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,x);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
void SAL_CALL java_sql_PreparedStatement::setLong( sal_Int32 parameterIndex, sal_Int64 x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(IJ)V";
static char * cMethodName = "setLong";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,x);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
void SAL_CALL java_sql_PreparedStatement::setNull( sal_Int32 parameterIndex, sal_Int32 sqlType ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(II)V";
static char * cMethodName = "setNull";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,sqlType);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(ILjava/sql/Clob;)V";
static char * cMethodName = "setClob";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,0);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(ILjava/sql/Blob;)V";
static char * cMethodName = "setBlob";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,0);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(ILjava/sql/Array;)V";
static char * cMethodName = "setArray";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,0);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(ILjava/sql/Ref;)V";
static char * cMethodName = "setRef";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,0);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(ILjava/lang/Object;II)V";
static char * cMethodName = "setObject";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,0,targetSqlType,scale);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(ILjava/lang/Object;)V";
static char * cMethodName = "setObject";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,0);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
void SAL_CALL java_sql_PreparedStatement::setObject( sal_Int32 parameterIndex, const ::com::sun::star::uno::Any& x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
if(!::dbtools::implSetObject(this,parameterIndex,x))
{
::rtl::OUString sMsg = ::rtl::OUString::createFromAscii("Unknown type for parameter: ");
sMsg += ::rtl::OUString::valueOf(parameterIndex);
sMsg += ::rtl::OUString::createFromAscii(" !") ;
::dbtools::throwGenericSQLException(sMsg,*this);
}
2000-09-18 15:18:56 +00:00
}
// -------------------------------------------------------------------------
void SAL_CALL java_sql_PreparedStatement::setShort( sal_Int32 parameterIndex, sal_Int16 x ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(IS)V";
static char * cMethodName = "setShort";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID, parameterIndex,x);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(I[B)V";
static char * cMethodName = "setBytes";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
jbyteArray pByteArray = t.pEnv->NewByteArray(x.getLength());
t.pEnv->SetByteArrayRegion(pByteArray,0,x.getLength(),(jbyte*)x.getConstArray());
t.pEnv->CallVoidMethod( object, mID, parameterIndex,pByteArray);
t.pEnv->DeleteLocalRef(pByteArray);
2000-09-18 15:18:56 +00:00
ThrowSQLException(t.pEnv,*this);
// und aufraeumen
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(ILjava/io/InputStream;I)V";
static char * cMethodName = "setCharacterStream";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID )
{
jvalue args2[3];
jbyteArray pByteArray = t.pEnv->NewByteArray(length);
Sequence< sal_Int8> aSeq;
if(x.is())
x->readBytes(aSeq,length);
t.pEnv->SetByteArrayRegion(pByteArray,0,length,(jbyte*)aSeq.getConstArray());
args2[0].l = pByteArray;
args2[1].i = 0;
args2[2].i = (sal_Int32)length;
// temporaere Variable initialisieren
char * cSignatureStream = "([BII)V";
// Java-Call absetzen
jclass aClass = t.pEnv->FindClass("java/io/CharArrayInputStream");
static jmethodID mID2 = NULL;
if ( mID2 )
mID2 = t.pEnv->GetMethodID( aClass, "<init>", cSignatureStream );
jobject tempObj = NULL;
if(mID2)
tempObj = t.pEnv->NewObjectA( aClass, mID2, args2 );
t.pEnv->CallVoidMethod( object, mID, parameterIndex,tempObj,length);
2000-09-18 15:18:56 +00:00
// und aufraeumen
t.pEnv->DeleteLocalRef(pByteArray);
t.pEnv->DeleteLocalRef(tempObj);
t.pEnv->DeleteLocalRef(aClass);
ThrowSQLException(t.pEnv,*this);
}
2000-09-18 15:18:56 +00:00
} //t.pEnv
}
// -------------------------------------------------------------------------
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)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "(ILjava/io/InputStream;I)V";
static char * cMethodName = "setBinaryStream";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID )
{
jvalue args2[3];
jbyteArray pByteArray = t.pEnv->NewByteArray(length);
Sequence< sal_Int8> aSeq;
x->readBytes(aSeq,length);
t.pEnv->SetByteArrayRegion(pByteArray,0,length,(jbyte*)aSeq.getConstArray());
args2[0].l = pByteArray;
args2[1].i = 0;
args2[2].i = (sal_Int32)length;
// temporaere Variable initialisieren
char * cSignatureStream = "([BII)V";
// Java-Call absetzen
jclass aClass = t.pEnv->FindClass("java/io/ByteArrayInputStream");
static jmethodID mID2 = NULL;
if ( mID2 )
mID2 = t.pEnv->GetMethodID( aClass, "<init>", cSignatureStream );
jobject tempObj = NULL;
if(mID2)
tempObj = t.pEnv->NewObjectA( aClass, mID2, args2 );
t.pEnv->CallVoidMethod( object, mID, parameterIndex,tempObj,(sal_Int32)length);
2000-09-18 15:18:56 +00:00
// und aufraeumen
t.pEnv->DeleteLocalRef(pByteArray);
t.pEnv->DeleteLocalRef(tempObj);
t.pEnv->DeleteLocalRef(aClass);
ThrowSQLException(t.pEnv,*this);
}
2000-09-18 15:18:56 +00:00
} //t.pEnv
}
// -------------------------------------------------------------------------
void SAL_CALL java_sql_PreparedStatement::clearParameters( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
SDBThreadAttach t;
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "()V";
static char * cMethodName = "clearParameters";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID);
ThrowSQLException(t.pEnv,*this);
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
void SAL_CALL java_sql_PreparedStatement::clearBatch( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "()V";
static char * cMethodName = "clearBatch";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID);
ThrowSQLException(t.pEnv,*this);
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
void SAL_CALL java_sql_PreparedStatement::addBatch( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException)
{
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "()V";
static char * cMethodName = "addBatch";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
t.pEnv->CallVoidMethod( object, mID );
ThrowSQLException(t.pEnv,*this);
} //mID
} //t.pEnv
}
// -------------------------------------------------------------------------
::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;
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2000-09-18 15:18:56 +00:00
if( t.pEnv ){
createStatement(t.pEnv);
2000-09-18 15:18:56 +00:00
// temporaere Variable initialisieren
static char * cSignature = "()[I";
static char * cMethodName = "executeBatch";
2000-09-18 15:18:56 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2000-09-18 15:18:56 +00:00
if( mID ){
jintArray out = (jintArray)t.pEnv->CallObjectMethod( object, mID );
ThrowSQLException(t.pEnv,*this);
if(out)
{
jboolean p = sal_False;
aSeq.realloc(t.pEnv->GetArrayLength(out));
memcpy(aSeq.getArray(),t.pEnv->GetIntArrayElements(out,&p),aSeq.getLength());
t.pEnv->DeleteLocalRef(out);
}
} //mID
} //t.pEnv
return aSeq;
}
// -------------------------------------------------------------------------
2001-01-09 11:58:40 +00:00
::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);
2001-03-20 16:03:18 +00:00
SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment gel<65>scht worden!");
2001-01-09 11:58:40 +00:00
if( t.pEnv )
{
createStatement(t.pEnv);
2001-01-09 11:58:40 +00:00
// temporaere Variable initialisieren
static char * cSignature = "()Ljava/sql/ResultSetMetaData;";
static char * cMethodName = "getMetaData";
2001-01-09 11:58:40 +00:00
// Java-Call absetzen
static jmethodID mID = NULL;
if ( !mID )
mID = t.pEnv->GetMethodID( getMyClass(), cMethodName, cSignature );OSL_ENSURE(mID,"Unknown method id!");
2001-01-09 11:58:40 +00:00
if( mID ){
out = t.pEnv->CallObjectMethod( object, mID );
ThrowSQLException(t.pEnv,*this);
} //mID
} //t.pEnv
// ACHTUNG: der Aufrufer wird Eigentuemer des zurueckgelieferten Zeigers !!!
return out==0 ? 0 : new java_sql_ResultSetMetaData( t.pEnv, out );
}
// -----------------------------------------------------------------------------
2001-04-30 09:16:19 +00:00
// -----------------------------------------------------------------------------
2001-10-17 12:40:26 +00:00
void SAL_CALL java_sql_PreparedStatement::acquire() throw()
2001-04-30 09:16:19 +00:00
{
OStatement_BASE2::acquire();
}
// -----------------------------------------------------------------------------
2001-10-17 12:40:26 +00:00
void SAL_CALL java_sql_PreparedStatement::release() throw()
2001-04-30 09:16:19 +00:00
{
OStatement_BASE2::release();
}
// -----------------------------------------------------------------------------
void java_sql_PreparedStatement::createStatement(JNIEnv* _pEnv)
{
::osl::MutexGuard aGuard( m_aMutex );
checkDisposed(java_sql_Statement_BASE::rBHelper.bDisposed);
if( !object && _pEnv ){
// temporaere Variable initialisieren
static char * cSignature = "(Ljava/lang/String;II)Ljava/sql/PreparedStatement;";
static char * cMethodName = "prepareStatement";
jvalue args[1];
// Parameter konvertieren
args[0].l = convertwchar_tToJavaString(_pEnv,m_sSqlStatement);
// Java-Call absetzen
jobject out = NULL;
static jmethodID mID = NULL;
if ( !mID )
mID = _pEnv->GetMethodID( m_pConnection->getMyClass(), cMethodName, cSignature );
if( mID )
{
out = _pEnv->CallObjectMethod( m_pConnection->getJavaObject(), mID, args[0].l ,m_nResultSetType,m_nResultSetConcurrency);
}
else
{
static char * cSignature2 = "(Ljava/lang/String;)Ljava/sql/PreparedStatement;";
static jmethodID mID2 = NULL;
if ( !mID2)
mID2 = _pEnv->GetMethodID( m_pConnection->getMyClass(), cMethodName, cSignature2 );OSL_ENSURE(mID,"Unknown method id!");
if ( mID2 )
out = _pEnv->CallObjectMethod( m_pConnection->getJavaObject(), mID2, args[0].l );
}
_pEnv->DeleteLocalRef((jstring)args[0].l);
ThrowSQLException(_pEnv,*this);
if ( out )
object = _pEnv->NewGlobalRef( out );
} //t.pEnv
}
// -----------------------------------------------------------------------------
2001-01-09 11:58:40 +00:00
2000-09-18 15:18:56 +00:00