This is a discussion on How to call a stored procedure with white space within? - JDBC JAVA ; // store procedure name = test proc // accessing the prov via MS JDBC Driver for MS SQL Server 2000 /* best not to have proc that contains special character like white space however, if you are not the developer ...
// store procedure name = test proc
// accessing the prov via MS JDBC Driver for MS SQL Server 2000
/* best not to have proc that contains special character like white
space
however, if you are not the developer ...
*/
cs = con.prepareCall("{call [test proc]}"); // won't work
How to?
tia.