JDBC Operation under Application

Source: Internet
Author: User

Create a new Java project name called TEXTJDBC, create a new com.zss.www package under the SRC folder, and build a class:usedadabase in the package

Build a lb library in MySQL and create a table in it: student, table with Name,age,sex

The Usedadabase code is as follows:

 Packagecom.zss.www;ImportJava.sql.DriverManager;ImportJava.sql.ResultSet;Importjava.sql.Statement;Importcom.mysql.jdbc.Connection; Public classUsedadabase { Public Static voidMain (string[] args)throwsException {//TODO auto-generated Method StubString driver= "Com.mysql.jdbc.Driver"; String URL= "JDBC:MYSQL://LOCALHOST:3306/LB"; String username= "Root"; String Password= "11"; Connection Conn=NULL;        Class.forName (driver); Conn=(Connection) DriverManager. getconnection (Url,username,password); Statement stmt=NULL; ResultSet RS=NULL; stmt=(Statement) conn.createstatement (); RS=stmt.executequery ("Select*from student");  while(Rs.next ()) {System.out.println ("Name=" +rs.getstring (1)); System.out.println ("Age=" +rs.getstring (2)); System.out.println ("Sex=" +rs.getstring (3));        } rs.close ();        Stmt.close ();            Conn.close (); }}

JDBC Operation under Application

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.