java.sql.SQLException:getShort() 的值无效 - ''

Posted

技术标签:

【中文标题】java.sql.SQLException:getShort() 的值无效 - \'\'【英文标题】:java.sql.SQLException: Invalid value for getShort() - ' 'java.sql.SQLException:getShort() 的值无效 - '' 【发布时间】:2017-08-24 03:37:18 【问题描述】:

我想在我的 java 代码中使用 DocumentListener 自动过滤搜索 但代码显示

错误 java.sql.SQLException:getShort() 的值无效 - ''

在“单引号”中具有匹配值,即。程序显示错误( java.sql.SQLException: Invalid value for getShort() - 'Rabin Karki' ) 当我在搜索文本字段中输入 ('r') 时

我的数据库表是“员工”,包含以下列

姓名 varchar(40)、职务 varchar(40)、工资 int()、地址 varchar(40)、联系人 int()、电子邮件 varchar(40)、BirthDate date()、 加入日期()

import java.awt.*;
import java.awt.event.*;
import java.sql.*;
import javax.swing.*;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import javax.swing.table.*;
import javax.swing.text.Document;

public class Test extends JFrame implements ActionListener

    JTextField txt;
    JButton btn;

    DefaultTableModel model = new DefaultTableModel();
    JTable table = new JTable(model);

    Connection con;
    Statement stmt;
    PreparedStatement pstmt;
    ResultSet rs;

    public Test()
        txt = new JTextField();
        btn = new JButton("Search");

        setLayout(null);

        add(txt);
        txt.setBounds(320,20,100,20);

        add(btn);
        btn.setBounds(500,20,80,20);

        txt.getDocument().addDocumentListener(new MyDocumentListener());

        try
            Class.forName("com.mysql.jdbc.Driver");
            con = DriverManager.getConnection("jdbc:mysql://localhost:3306/salarymanagement","root","");
            stmt = con.createStatement();
            rs = stmt.executeQuery("select * from staff");

            model.addColumn("Name");
            model.addColumn("Designation");
            model.addColumn("Salary");
            model.addColumn("Address");
            model.addColumn("Contact");
            model.addColumn("Email");
            model.addColumn("Birth Date");
            model.addColumn("Join Date");

            while(rs.next())
                model.addRow(new Object[]  rs.getString(1),rs.getString(2),rs.getString(3),rs.getString(4),rs.getString(5),rs.getString(6),rs.getString(7),rs.getString(8));
            

            int v = ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS;
            int h = ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;

            JScrollPane scrollPane = new JScrollPane(table,v,h);
            add(scrollPane, BorderLayout.CENTER);
            scrollPane.setBounds(5,60,1000,1000);

            table.updateUI();
        
        catch(Exception ex)
            System.out.println("ERROR :"+ex);
        
        setSize(1200,1200);
        setVisible(true);
        setTitle("Test of search filter");
        setDefaultCloseOperation(EXIT_ON_CLOSE);
    

    class MyDocumentListener implements DocumentListener

        public void update(DocumentEvent de)
            Document doc = (Document)de.getDocument();
            int length = doc.getLength();
            String str = null;

            try
                str = doc.getText(0,length);
            
            catch(Exception ex)
                System.out.println("error"+ex);
            

            try
                Class.forName("com.mysql.jdbc.Driver");
                con = DriverManager.getConnection("jdbc:mysql://localhost:3306/salarymanagement","root","");
                pstmt = con.prepareStatement("select * from staff where Name like '"+str+"%' order by Name");
                rs = pstmt.executeQuery();

                model.setRowCount(0);

                while(rs.next())
                    model.addRow(new Object[] rs.getShort(1),rs.getString(2),rs.getString(3),rs.getString(4),rs.getString(5),rs.getString(6),rs.getString(7),rs.getString(8) );
                
                pstmt.close();
                con.close();
            
            catch(Exception exc)
                System.out.println("error "+exc);
            
        

        @Override
        public void insertUpdate(DocumentEvent de) 
            update(de);
        

        @Override
        public void removeUpdate(DocumentEvent de) 
            update(de);
        

        @Override
        public void changedUpdate(DocumentEvent de) 
            update(de);
        
    

    @Override
    public void actionPerformed(ActionEvent e) 
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    
    public static void main(String[] args) 
        new Test();
    

【问题讨论】:

您确定结果集中列的顺序吗? 这不是like '"+str+"%' order 准备好的语句是如何工作的 第一列是Name,您将其处理为short:rs.getShort(1),? 感谢 Jens 你说对了 【参考方案1】:

select * fromcreate 语句创建的顺序返回列。 在您的情况下,名称将是第一列。您在结果集中使用rs.getShort(1) 阅读。你必须在这里使用字符串:

               model.addRow(new Object[] rs.getString(1...

您最好将列添加到select 以定义顺序。

【讨论】:

好找,用columnLabel代替索引更好getString(String columnLabel)

以上是关于java.sql.SQLException:getShort() 的值无效 - ''的主要内容,如果未能解决你的问题,请参考以下文章

JDBC报错 消息 Could not get JDBC Connection; nested exception is java.sql.SQLException: Unknown system v

java.sql.SQLException: ORA-28040: No matching authentication protocol

java.sql.SQLException:字段“client_id”没有默认值

java.sql.SQLException:getShort() 的值无效 - ''

java.sql.SQLException: SQL 语句在 org.hsqldb.jdbc.JDBCUtil.sqlException 处关闭

Oracle DB:java.sql.SQLException:关闭连接