Oracle's binding variables

Source: Internet
Author: User

Binding Variables (binding variable), shared pool (pooled buffer pool), SGA(System global Area);

Role: The SQL should be analyzed into soft analysis, reducing the resources and time spent on hard analysis.

Java uses bound variables:

Bulk Delete SQL by ID

String sqlString = "Delete from Ivf_incubator_setting_d IfD where ifd.incubator_setting_h_id in (:foreignid)";
Query query = Getentitymanager (). Createnativequery (sqlString);
string[] id = ids.split (",");

Return Query.unwrap (Sqlquery.class). setparameterlist ("Foreignid", id). executeupdate ();

Delete Hql by ID

@Override
public int Removeentitybyid (class<?> clazz, Serializable ID) {
StringBuilder JPHL = new StringBuilder ();
Jphl.append ("DELETE from"). Append (Clazz.getsimplename ());
Jphl.append ("D WHERE d.id=:entityid");
Return Getentitymanager (). CreateQuery (Jphl.tostring ()). Setparameter ("EntityId", id). executeupdate ();
}

SGA: The system global Zone, which includes the data buffer zone, redo log area, and shared pool, is the area of memory shared by all user processes.

Oracle's binding variables

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.