Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to execute the following query:

statement.executeQuery("INSERT OPENQUERY (linkedServer, 'SELECT * FROM [Sheet1$]') EXEC  storedProc @param");

THe SP takes one parameter, I need to pass that ... I usually do:

CallableStatement cstmt = null;     

cstmt = conn.prepareCall("{call "+storedProc+"(?)}");
    cstmt.setString(1, id);
    cstmt.execute();

But How do I accomplish using java, as I have to run the above insert query as well.

Any help is highly appreciated.

share|improve this question
1  
can't you extract/wrap your linked server logic in a procedure and call that by name? – davek Apr 28 '11 at 22:13
no....is there...any alternative way of doing it... – user234194 Apr 28 '11 at 22:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.