在第一行之前插入行

时间:2015-04-30 01:18:02

标签: mysql netbeans derby

我正在尝试在开头写入数据库,以便新行是第一行。我在这里的代码将写入它,但它不会在第一行之前启动。我尝试使用resultset并尝试使用beforeFirst(),但它告诉我,我不能使用任何一个。我很难过如何做到这一点。任何帮助,将不胜感激! :D

        String host = "jdbc:derby://localhost:1527/Scores";
        String uName = "root";
        String uPass= "root";

         Connection con = DriverManager.getConnection( host, uName, uPass );                      
         String SQLw = "INSERT into ROOT.HISCORES (Intials,Score) values (?,?)";


         pst = con.prepareStatement(SQLw);

         pst.setString(1,jtxtIntials.getText());
         pst.setString(2,Score);



         pst.execute();             

0 个答案:

没有答案