JDBC Review notes

Source: Internet
Author: User

JDBC Principle: Java provides a set of specifications, by the major database vendors for their own database to provide the implementation of this set of specifications, this specification is called JDBC, and implementation is called the JDBC driver table program

Four core categories:

DriverManager----getconnection () //Get connection

Connection------createstatement //general statement set

-----preparestatement //Precompiled statement set (anti-SQL attack, high readability, high efficiency. Check syntax, compile action only once, parameterized SQL statement)

Statement------executeupdate () ///delete/modify

-----executeQuery //Enquiry

ResultSet------Next () //Move the cursor down one line, the return value is a Boolean, indicating whether the current row cursor points to the existence of the position, you can use the next () return value to determine whether the current row exists

-----getObject (), getString (n), GetInt (n) ... //Gets the top, n represents the index of the column, starting from 1

Four parameters (get connection):

Driverclassname //Driver class name

URL //database address

Username //database user name

Password //Database Password

JDBC Review notes

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.