Java执行多个SQL语句并在excel中编写

时间:2016-05-11 13:40:17

标签: java mysql sql-server excel jdbc

我想执行多个SQL语句并在excel文件中写出它们的输出。 我已为此编写了一些代码,但在执行此操作时会抛出错误

  

java.sql.BatchUpdateException:无法通过发出SELECT   executeUpdate()或executeLargeUpdate()。在   com.mysql.jdbc.SQLError.createBatchUpdateException(SQLError.java:1158)     在   com.mysql.jdbc.StatementImpl.executeBatchInternal(StatementImpl.java:1049)     在com.mysql.jdbc.StatementImpl.executeBatch(StatementImpl.java:959)     在Demo.DatabaseQry(Demo.java:133)Demo.main(Demo.java:48)引起   by:java.sql.SQLException:无法通过executeUpdate()或发出SELECT   executeLargeUpdate()。在   com.mysql.jdbc.SQLError.createSQLException(SQLError.java:957)at at   com.mysql.jdbc.SQLError.createSQLException(SQLError.java:896)at at   com.mysql.jdbc.SQLError.createSQLException(SQLError.java:885)at at   com.mysql.jdbc.SQLError.createSQLException(SQLError.java:860)at at   com.mysql.jdbc.StatementImpl.executeUpdateInternal(StatementImpl.java:1504)     在   com.mysql.jdbc.StatementImpl.executeBatchInternal(StatementImpl.java:1023)     ......还有3个

我的代码是......

public static void DatabaseQry(String ipAdd, String dbNm, String dbUnm, String dbPasswd)
    {
        String ipAddress, dbName, dbUserId, dbPassword, fileLocation;

        Connection conn = null;
        Statement stmt = null;
        try {
            ipAddress = ipAdd;
            dbName = dbNm;
            dbUserId = dbUnm;
            dbPassword = dbPasswd;

            BufferedReader brd = new BufferedReader(new InputStreamReader(System.in));
            System.out.println("Enter Output File location: ");
            fileLocation = brd.readLine();

            // Register JDBC driver
            Class.forName("com.mysql.jdbc.Driver");

            // Open a connection
            System.out.println("Connecting to database...");

            conn = DriverManager.getConnection("jdbc:mysql://" + ipAddress + ":3306/" + dbName, dbUserId, dbPassword);

            // Execute a query
            System.out.println("Working on Query...");
            stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
                      ResultSet.CONCUR_UPDATABLE);

            //String TotalWorkflow =  "SELECT COUNT(*) AS TOTAL_WORKFLOW FROM M_OBJECT WHERE TYPE_ IN(7)";
            String TotalAssets = "SELECT COUNT(*) AS TOTAL_ASSET FROM M_OBJECT WHERE TYPE_ IN(1,2,3)";
            String TotalJobs = "SELECT COUNT(*) AS TOTAL_JOBS FROM M_OBJECT WHERE TYPE_ IN(6)";
            String TotalTasks = "SELECT COUNT(*) AS TOTAL_TASKS FROM M_OBJECT WHERE TYPE_ IN(5)";
            conn.setAutoCommit(false);
            //stmt.addBatch(TotalWorkflow);
            stmt.addBatch(TotalAssets);
            stmt.addBatch(TotalJobs);
            stmt.addBatch(TotalTasks);

            //Workflow total count
            ResultSet rs = stmt.executeQuery("SELECT COUNT(*) AS TOTAL_WORKFLOW FROM M_OBJECT WHERE TYPE_ IN(7)");
            rs.last();
            stmt.executeBatch();

            conn.commit();
            rs.last();
            System.out.println("Batch executed");

            // Excel file generation code
            HSSFWorkbook workbook = new HSSFWorkbook();
            HSSFSheet sheet = workbook.createSheet("Readings");

            HSSFFont font = workbook.createFont();
            font.setFontHeightInPoints((short)12);
            font.setFontName("Arial");
          //  font.setColor(IndexedColors.DARK_BLUE.getIndex());
            font.setBold(true);

            HSSFCellStyle style = workbook.createCellStyle();
            style.setBorderTop((short) 6); // double lines border
            style.setBorderBottom((short) 2); // single line border
            style.setFont(font);
            style.setFillPattern(CellStyle.BORDER_DASH_DOT);

            sheet.createFreezePane(0, 1); // Freeze 1st Row   sheet.createFreezePane(int colSplit, int rowSplit, int leftmostColumn, int topRow)

            // Extract data from result set
            for (int i = 1; rs.next(); i++) {
                HSSFRow row = sheet.createRow(1);
                HSSFRow rowhead = sheet.createRow((short) 0);
                rowhead.setRowStyle(style);

                // For Workflow
                rowhead.createCell(8).setCellValue("WORKFLOWS");
                row.createCell(8).setCellValue(rs.getString("TOTAL_WORKFLOW"));

                // For Assets
                rowhead.createCell(9).setCellValue("ASSETS");
                row.createCell(9).setCellValue(rs.getString("TOTAL_ASSET"));

                // For Jobs
                rowhead.createCell(10).setCellValue("JOBS");
                row.createCell(10).setCellValue(rs.getString("TOTAL_JOBS"));

                // For Tasks
                rowhead.createCell(11).setCellValue("TASKS");
                row.createCell(11).setCellValue(rs.getString("TOTAL_TASKS"));

                //row.createCell(1).setCellValue(rs.getString("EXCEPTION_COUNT_"));
            }

            // FileOutputStream fileOut = new FileOutputStream(filename);
            FileOutputStream fileOut = new FileOutputStream(fileLocation + "\\Readings.xls");
            workbook.write(fileOut);
            fileOut.close();
            System.out.println("Excel file has been generated");

            // Clean-up environment
            rs.close();
            stmt.close();
            conn.close();
        } catch (SQLException se) {
            // Handle errors for JDBC
            System.out.println("Unable to make connection with database...!");
            se.printStackTrace();
        } catch (Exception e) {
            // Handle errors for Class.forName
            e.printStackTrace();
        } finally {
            // finally block used to close resources
            System.out.println("\n\nPress \"Enter\" to exit...\n");
            try {
                System.in.read();
            } catch (Exception e) {
                e.printStackTrace();
            }
            try {
                if (stmt != null)
                    stmt.close();
            } catch (SQLException se2) {
            } // nothing we can do
            try {
                if (conn != null)
                    conn.close();
            } catch (SQLException se) {
                se.printStackTrace();
            } // end finally try
        } // end try
        System.out.println("Execution Completed");
    }

2 个答案:

答案 0 :(得分:1)

您不能将addBatch用于选择查询。 statement.addBatch()仅用于更新/插入/删除查询或不提供任何结果的查询。

    String TotalAssets = "SELECT COUNT(*) AS TOTAL_ASSET FROM M_OBJECT WHERE TYPE_ IN(1,2,3)";
    stmt1 = con.createStatement();
    ResultSet rsTotalAssets = stmt1.executeQuery(TotalAssets);
    rsTotalAssets.next();
    int totalAssetsCount = rsTotalAssets.getInt("TOTAL_ASSET");

使用totalAssetsCount设置适当的单元格值。对TotalJobs和TotalTask​​s重复上述代码。

关闭finally块

中的语句和结果集
    rsTotalAssets.close();
    stmt1.close();

答案 1 :(得分:1)

对于你所有的查询字符串,你应该这样做:

select max(date_column) MaxDateYearWise,datepart(YYYY,date_column) Year 
into #dt 
from date_range_table
group by datepart(YYYY,date_column)


select MaxDateYearWise from #dt

drop table #dt

异常处理留待自己做。 ; - )