我有一种检查员工出勤的方法。从数据库中检索员工的名字,姓氏,职位。日常出勤方法效果很好。现在,我还有一种方法可以根据每日出勤方法创建每月出勤报告。它还检索数据库中的数据。在查询中,我使用了枢轴。没用该错误表明在from子句中有错误。但是,当我在ms access中测试该查询时,它运行良好。大家可以帮我吗?这是我的代码。

private void attendanceView() throws ClassNotFoundException{
        String query ="TRANSFORM COUNT(attendance.present)SELECT employees.ID,employees.firstName,employees.lastName,employees.position,employees.rate FROM employees LEFT JOIN attendance ON employees.ID = attendance.empID GROUP BY employees.ID,employees.firstName,employees.lastName,employees.position,employees.rate PIVOT attendance.dateAttended";
       Object[][] result = connectToDB(query);
       monthlyAttendanceTable.setModel(new javax.swing.table.DefaultTableModel(
               result, new String [] {"Employee ID","First Name","Last Name", "Position", "Rate","",""}
       )
       {
           Class[] types = new Class [] {
               java.lang.Integer.class, java.lang.String.class, java.lang.String.class, java.lang.String.class, java.lang.Integer.class, java.lang.Integer.class, java.lang.Integer.class, java.lang.Integer.class,java.lang.Integer.class,java.lang.Integer.class,java.lang.String.class
           };
           boolean[] canEdit = new boolean [] {
               false, false, false, false, false, false, false, false, false,false
           };

           public Class getColumnClass(int columnIndex) {
               return types [columnIndex];
           }

           public boolean isCellEditable(int rowIndex, int columnIndex) {

               return canEdit [columnIndex];
           }
       });
    }


我从一些资源中读取到可以将结果集插入到excel文件中。谁能帮我这个?我正在通过connectToDB()方法访问数据库,我想将数据透视查询结果插入到excel文件中。

最佳答案

您可以使用EasyXLS库将结果集导出到Excel文件。检查一些源代码示例here

07-26 04:11
查看更多