statement executing static SQL statements

Source: Internet
Author: User
Tags stmt

Importjava.sql.Connection;ImportJava.sql.DriverManager;Importjava.sql.SQLException;Importjava.sql.Statement;Importorg.junit.Test; Public classDemo1 {PrivateString url = "Jdbc:mysql://localhost:3306/tablename"; PrivateString user = "root"; PrivateString password = "root"; @Test Public voidtest1 () {Connection conn=NULL; Statement stmt=NULL; Try{            //1. Registered DriverClass.forName ("Com.mysql.jdbc.Driver"); //2. Create a Connection objectconn =drivermanager.getconnection (URL, user, password); //3. Create a statement objectstmt =conn.createstatement (); //4. Preparing SQL statementsString sql = "CREATE trable student (id PRIMARY KEY auto_increment,name VARCHAR (), Gender (2))"; //5. Sending SQL statements, executing SQL statements            intCount =stmt.executeupdate (SQL); //5. OutputSystem.out.println ("affected" + Count + "line! "); }Catch(Exception e) {e.printstacktrace (); Throw NewRuntimeException (e); }finally{            //7, close the connection (order: After opening the first closed)            if(stmt! =NULL){                Try{stmt.close (); } Catch(SQLException e) {e.printstacktrace (); Throw NewRuntimeException (e); }            }            if(Conn! =NULL){                Try{conn.close (); } Catch(SQLException e) {e.printstacktrace (); Throw NewRuntimeException (e); }            }                    }    }}

statement executing static SQL statements

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.