自从我无法继续解决这个问题以来已经两天了。我知道别人的这很简单。我刚开始学习 JDBC 3 个月。
问题
- 无法从结果集中检索值。
- 它给了我一个空值。
根据我阅读和评论我的代码,存储过程可以返回一个结果集,但我的情况没有。我不应该遍历结果集。因此,如果我想检索值,我需要在 Callable 语句本身而不是在结果集上调用适当的 getXXX() 方法。所以我所做的就是从结果集块中删除我的代码,并将其放在 Callable Statement 块上,这给了我一个空值。我无法正确检索我的值。
CREATE TABLE allsections_list
(
SECTION_ID INT PRIMARY KEY,
SECTION_NAME VARCHAR(50) NULL
)
DELIMITER @@
DROP PROCEDURE getSECTION_NAME @@
CREATE PROCEDURE enrollmentdb.getSECTION_NAME
(IN myID INT, OUT myName VARCHAR(50))
BEGIN
SELECT SECTION_NAME INTO myName FROM allsections_list WHERE SECTION_ID = myID;
END @@
DELIMITER ;
当我尝试通过调用语法检索我的存储过程时。我成功地检索了现有记录。
SET @myID = 9;
CALL getSECTION_NAME(@myID, @myName);
SELECT @myName;
正如您在此处看到的,我正在检索正确的值。但是当我使用结果集检索它时,它给了我一个空值。
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
String searchSection = Section_SearchSection_Textfield.getText();
String searchSection_Name = Section_SectionName_TextField.getText();
int sectionID = 0;
if (searchSection.isEmpty())
{
JOptionPane.showMessageDialog(null, "Please fill up this fields");
}
else
try (Connection myConn = DBUtil.connect();
CallableStatement myFirstCs = myConn.prepareCall("{call getSECTION_NAME(?,?)}"))
{
myFirstCs.setInt(1, sectionID);// I set the ID for Primary Key
myFirstCs.registerOutParameter(2, Types.VARCHAR);
boolean hasresults = myFirstCs.execute();
if (hasresults)
{
try (ResultSet myRs = myFirstCs.getResultSet())
{
int counter = 0;
while (myRs.next())
{
sectionID = myRs.getInt("SECTION_ID");
System.out.print(sectionID);
counter++;
}//end of while
}//end of resultset
}//end of if
String sectionName = myFirstCs.getString(2);
Section_SectionName_TextField.setText(sectionName);//Set the value of text
Section_SectionName_TextField.setEnabled(true);//Set to enable
System.out.print(sectionName);
}//end of connection
catch (SQLException e)
{
DBUtil.processException(e);
}
}
感谢您花时间阅读我的帖子。任何帮助将不胜感激。谢谢!:)