Java Interview--02

Source: Internet
Author: User

003. Whatis the difference between statement and PreparedStatement?

First: preparestatement Initializes SQL first, submits the SQL to the database for preprocessing, and uses multiple times to improve efficiency. Save time and increase the readability of your code

Createstatement does not initialize, no preprocessing, no time is starting from 0 to execute SQL

Second: Preparestatement can replace variables, can be included in SQL statements, can be used Ps=conn.preparestatement ("select* from Cust where id=?"); and statement can't

Third:PreparedStatement faster than Statement ,preparedstatement can write dynamic parameterized query, when the database only perform one-time access, with Statement object for processing. The overhead of PreparedStatement objects is larger than statement, and there is no additional benefit for one-time operations.

Java Interview--02

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.