Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
Is there any sp like tmysqlSp for amazon aurora???
if not then what is the alternative ?
note : I need to use an existing connection ( that is tamazonAuroraConnection) for calling SP so that i can rollback.
try {
java.sql.Connection conn = (java.sql.Connection) globalMap.get("conn_tAmazonAuroraConnection_1");
java.sql.Statement stat = conn.createStatement();
String sql = "select my_proc()";
stat.execute(sql);
stat.close();
} catch (java.sql.SQLException sqle) {
globalMap.put("ERROR_MESSAGE", sqle.getMessage());
throw sqle;
}
Hello,
Could you confirm whether the below approach of writing custom java code to invoke SP from Amazon Aurora database worked? If yes, Could you share the custom Java code that is written to solve this issue ? or did you try any other alternatives to invoke SP from Amazon Aurora rds.
Thanks much!!
Karthik