我是靠谱客的博主 感动毛豆,最近开发中收集的这篇文章主要介绍executeBatch 如何得到是哪些语句出错,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

  1.     Connection conn = null;   
  2.     PreparedStatement pst = null;   
  3.     ResultSet rs = null;   
  4.     int[] arr = null;   
  5.     int[] arrEx = null;   
  6.     boolean success = true;   
  7.     try {   
  8.   
  9.       Class.forName("oracle.jdbc.driver.OracleDriver");;   
  10.       conn = DriverManager.getConnection(   
  11.           "jdbc:oracle:thin:@localhost:1521:ora92""test""test");;   
  12.       DatabaseMetaData dbmd = conn.getMetaData();;   
  13.       System.out.println(dbmd.supportsBatchUpdates(););;   
  14.       System.out.println(conn.getAutoCommit(););;   
  15. //      conn.setAutoCommit(false);;   
  16.       pst = conn.prepareStatement("insert into temp values(?);");;   
  17.       int temp = 0;   
  18.       for (int i = 90; i < 120; i++); {   
  19.         temp = i;   
  20.         if (temp > 110); {   
  21.           temp -= 100;   
  22.         }   
  23.         pst.setInt(1, temp);;   
  24.         pst.addBatch();;   
  25.       }   
  26.       arr = pst.executeBatch();;   
  27.     }   
  28.     catch (ClassNotFoundException e); {   
  29.       System.out.println(e);;   
  30.       success = false;   
  31.     }   
  32.     catch (BatchUpdateException e); {   
  33.       System.out.println(arr == null);;   
  34.       success = false;   
  35.       arrEx = e.getUpdateCounts();;   
  36.       System.out.println(arrEx.length);;   
  37.       for (int i = 0; i < arrEx.length; i++); {   
  38.         System.out.println(arrEx[i]);;   
  39.       }   
  40.   
  41.       System.out.println(e);;   
  42.     }   
  43.     catch (SQLException e); {   
  44.       success = false;   
  45.       System.out.println(e);;   
  46.     }   
  47.     finally {   
  48.   
  49. //      try {   
  50. //        if(success);{   
  51. //          conn.commit();;   
  52. //        }else{   
  53. //          conn.rollback();;   
  54. //        }   
  55. //      }   
  56. //      catch (SQLException se); {   
  57. //        System.out.println(se);;   
  58. //   
  59. //      }   
  60.       if (rs != null); {   
  61.         try {   
  62.           rs.close();;   
  63.           rs = null;   
  64.         }   
  65.         catch (Exception e); {}   
  66.       }   
  67.       if (pst != null); {   
  68.         try {   
  69.           pst.close();;   
  70.           pst = null;   
  71.         }   
  72.         catch (Exception e); {}   
  73.       }   
  74.       if (conn != null); {   
  75.         try {   
  76.           conn.close();;   
  77.           conn = null;   
  78.         }   
  79.         catch (Exception e); {}   
  80.       }   
  81.     }  

 

最后

以上就是感动毛豆为你收集整理的executeBatch 如何得到是哪些语句出错的全部内容,希望文章能够帮你解决executeBatch 如何得到是哪些语句出错所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部