Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DBUtils を使用して呼び出し可能なステートメントを呼び出す方法がわかりません
すべてのフィールドが入力であり、どのフィールドがすべて出力であるかをどのように指定できますか?
あなただけを使用する必要がありますCallableStatement
CallableStatement
Connection con = ...; // get the connection CallableStatement callStatement = con.prepareCall("{CALL yourStoredProcedure()}"); ResultSet rs = callStatement.executeQuery(); // do what you need to do