Mysql java Programming Interface (for future reference)

Source: Internet
Author: User

Package com. xiecheng. util; import java. SQL. *; public class DB {public static Connection getConn () {Connection conn = null; try {Class. forName ("com. mysql. jdbc. driver "); conn = DriverManager. getConnection ("jdbc: mysql: // localhost/test? User = test & password = test & useUnicode = true & characterEncoding = UTF-8 ");} catch (ClassNotFoundException e) {e. printStackTrace ();} catch (SQLException e) {e. printStackTrace () ;}return conn;} public static PreparedStatement prepare (Connection conn, String SQL) {PreparedStatement pstmt = null; try {if (conn! = Null) {pstmt = conn. prepareStatement (SQL) ;}} catch (SQLException e) {e. printStackTrace ();} return pstmt;} public static PreparedStatement prepare (Connection conn, String SQL, int autoGenereatedKeys) {PreparedStatement pstmt = null; try {if (conn! = Null) {pstmt = conn. prepareStatement (SQL, autoGenereatedKeys) ;}} catch (SQLException e) {e. printStackTrace ();} return pstmt;} public static Statement getStatement (Connection conn) {Statement stmt = null; try {if (conn! = Null) {stmt = conn. createStatement () ;}} catch (SQLException e) {e. printStackTrace ();} return stmt;}/* public static ResultSet getResultSet (Connection conn, String SQL) {Statement stmt = getStatement (conn); ResultSet rs = getResultSet (stmt, SQL); close (stmt); return rs;} */public static ResultSet getResultSet (Statement stmt, String SQL) {ResultSet rs = null; try {if (stmt! = Null) {rs = stmt.exe cuteQuery (SQL) ;}} catch (SQLException e) {e. printStackTrace ();} return rs;} public static void executeUpdate (Statement stmt, String SQL) {try {if (stmt! = Null) Begin stmt.exe cuteUpdate (SQL) ;}} catch (SQLException e) {e. printStackTrace () ;}} public static void close (Connection conn) {try {if (conn! = Null) {conn. close (); conn = null ;}} catch (SQLException e) {e. printStackTrace () ;}} public static void close (Statement stmt) {try {if (stmt! = Null) {stmt. close (); stmt = null ;}} catch (SQLException e) {e. printStackTrace () ;}} public static void close (ResultSet rs) {try {if (rs! = Null) {rs. close (); rs = null ;}} catch (SQLException e) {e. printStackTrace ();}}}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.