22/10/2009, 09:31
|
| | Fecha de Ingreso: octubre-2009
Mensajes: 1
Antigüedad: 15 años, 2 meses Puntos: 0 | |
Respuesta: Java Cómo hacer 1 Execute Immediate? Estimado AXZ,
Debes ejecutar la sentencia ORACLE sin EXECUTE IMMEDIATE:
Connection connection = null;
try
{
InitialContext initialContext = new InitialContext();
DataSource dataSource = null;
dataSource = ( DataSource )initialContext.lookup( "jdbc/conPUCoreDS" );
connection = dataSource.getConnection();
PreparedStatement pStmt = connection.prepareStatement( " 'ALTER SESSION SET NLS_LANGUAGE = AMERICAN';" );
pStmt.execute();
pStmt.close();
... |