This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes JDBC and the fly likes SybSQLException: Stored procedure 'xxx be run only in un chained mode Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "SybSQLException: Stored procedure Watch "SybSQLException: Stored procedure New topic
Author

SybSQLException: Stored procedure 'xxx be run only in un chained mode

srinivas nama
Greenhorn

Joined: Aug 20, 2001
Posts: 3
com.sybase.jdbc2.jdbc.SybSQLException: Stored procedure 'ap_SystemAccess' may be run only in unchained transaction mode. The 'SET CHAINED OFF' command will cause the current session to use unchained transaction mode.
I am trying to execute procedure,
//cs.executeUpdate("SET CHAINED OFF");
// String sptest = " { call sp_procxmode ccsys.dbo.ap_SystemAccess" + "," + " anymode }" ;

//CallableStatement aStmt = con.prepareCall(sptest);

//boolean rc12 =aStmt.execute();
// rs = stmt.executeQuery("EXEC myProc");

boolean rc1 = cs.execute();
con.commit();
con.setAutoCommit(true);
It is giving me above error, then I tried to run sp_proxmode anymode, it is giving syntax error near '.'[ccsys.dbo.ap_SystemAccess]
any help appreciated,
Thanks,
Srini
 
 
subject: SybSQLException: Stored procedure 'xxx be run only in un chained mode
 
Similar Threads
Issue calling a stored procedure from Weblogic 8.1 workshop project
Set Chained OFF error while executing from my Bean
Transaction Control for a method.
set chained mode off ???
SessionBean calling multiple stored procedures