Implementing support to JAVA 6
This commit is contained in:
parent
c18111a1ea
commit
9857c68dd8
|
@ -257,7 +257,7 @@ public class ServerConnection implements Connection
|
|||
throw new java.lang.UnsupportedOperationException ("Method setTypeMap() not yet implemented.");
|
||||
}
|
||||
|
||||
/* Java 6 support - teo_sarca BF [ 1806700 ] *
|
||||
/* Java 6 support - teo_sarca BF [ 1806700 ] */
|
||||
public java.sql.Array createArrayOf(String typeName, Object[] elements) throws SQLException {
|
||||
throw new java.lang.UnsupportedOperationException ("Method not yet implemented.");
|
||||
}
|
||||
|
|
|
@ -1462,7 +1462,7 @@ public class CCallableStatement extends CPreparedStatement implements CallableSt
|
|||
|
||||
|
||||
|
||||
/* Java 6 support - teo_sarca BF [ 1806700 ] *
|
||||
/* Java 6 support - teo_sarca BF [ 1806700 ] */
|
||||
public Reader getCharacterStream(int parameterIndex) throws SQLException {
|
||||
if (p_stmt != null)
|
||||
{
|
||||
|
|
|
@ -884,7 +884,7 @@ public class CPreparedStatement extends CStatement implements PreparedStatement
|
|||
|
||||
//uncomment the following methods to compile using jdk 6
|
||||
//vpj-cd add support java 6
|
||||
/*
|
||||
|
||||
public void setBinaryStream(int parameterIndex, java.io.InputStream x,
|
||||
long length) throws SQLException
|
||||
{
|
||||
|
@ -981,7 +981,7 @@ public class CPreparedStatement extends CStatement implements PreparedStatement
|
|||
}
|
||||
|
||||
public void setRowId(int parameterIndex, java.sql.RowId x) throws SQLException{}
|
||||
*/
|
||||
|
||||
|
||||
} // CPreparedStatement
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version = "1.0" encoding = "UTF-8"?>
|
||||
<jnlp spec = "1.5+" version = "3.5.2a"
|
||||
<jnlp spec = "1.6+" version = "3.5.2a"
|
||||
codebase = "$$context/adempiereHome"
|
||||
href = "$$context/adempiere.jnlp">
|
||||
<information>
|
||||
|
@ -21,7 +21,7 @@
|
|||
<all-permissions/>
|
||||
</security>
|
||||
<resources>
|
||||
<j2se version = "1.5+" href = "http://java.sun.com/products/autodl/j2se" initial-heap-size = "32m" max-heap-size = "512m"/>
|
||||
<j2se version = "1.6+" href = "http://java.sun.com/products/autodl/j2se" initial-heap-size = "32m" max-heap-size = "512m"/>
|
||||
<jar href = "Adempiere.jar" main = "true" download = "eager"/>
|
||||
<jar href = "AdempiereCLib.jar" main = "false" download = "eager"/>
|
||||
<jar href = "CompiereJasperReqs.jar" main = "false" download = "eager"/>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version = "1.0" encoding = "UTF-8"?>
|
||||
<jnlp spec = "1.5+" version = "3.5.2a"
|
||||
<jnlp spec = "1.6+" version = "3.5.2a"
|
||||
codebase = "http://@ADEMPIERE_APPS_SERVER@:@ADEMPIERE_WEB_PORT@/admin/adempiereHome"
|
||||
href = "http://@ADEMPIERE_APPS_SERVER@:@ADEMPIERE_WEB_PORT@/admin/adempiereHome/adempiereDirect.jnlp">
|
||||
<information>
|
||||
|
@ -20,7 +20,7 @@
|
|||
<all-permissions/>
|
||||
</security>
|
||||
<resources>
|
||||
<j2se version = "1.5+" href = "http://java.sun.com/products/autodl/j2se" initial-heap-size = "32m" max-heap-size = "512m"/>
|
||||
<j2se version = "1.6+" href = "http://java.sun.com/products/autodl/j2se" initial-heap-size = "32m" max-heap-size = "512m"/>
|
||||
<jar href = "Adempiere.jar" main = "true" download = "eager"/>
|
||||
<jar href = "AdempiereCLib.jar" main = "false" download = "eager"/>
|
||||
<jar href = "CompiereJasperReqs.jar" main = "false" download = "eager"/>
|
||||
|
|
Loading…
Reference in New Issue