About 1,980 results
Open links in new tab
  1. Processing SQL Statements with JDBC (The Java™ Tutorials - Oracle

    This JDBC Java tutorial describes how to use JDBC API to create, insert into, update, and query tables. You will also learn how to use simple and prepared statements, stored procedures and …

  2. Statement (Java Platform SE 8 ) - Oracle

    Executes the given SQL statement, which may be an INSERT, UPDATE, or DELETE statement or an SQL statement that returns nothing, such as an SQL DDL statement. Note: This method …

  3. Statement (Java SE 17 & JDK 17) - Oracle

    Executes the given SQL statement, which may be an INSERT, UPDATE, or DELETE statement or an SQL statement that returns nothing, such as an SQL DDL statement. Note: This method …

  4. java.sql (Java Platform SE 8 ) - Oracle

    A user-defined type (UDT) defined in SQL can be mapped to a class in the Java programming language. An SQL structured type or an SQL DISTINCT type are the UDTs that may be …

  5. Using Prepared Statements (The Java™ Tutorials > JDBC ... - Oracle

    The main feature of a PreparedStatement object is that, unlike a Statement object, it is given a SQL statement when it is created. The advantage to this is that in most cases, this SQL …

  6. PreparedStatement (Java Platform SE 8 ) - Oracle

    Executes the SQL statement in this PreparedStatement object, which must be an SQL Data Manipulation Language (DML) statement, such as INSERT, UPDATE or DELETE; or an SQL …

  7. 27 Using Java in the Database - docs.oracle.com

    SQLJ is an industry standard for defining precompiled SQL code in Java programs. SQLJ allows you to code at a higher level than JDBC, by embedding SQL statements directly in your Java …

  8. SQL, PL/SQL, and Java - Oracle

    Oracle has worked with other vendors, including IBM, Tandem, Sybase, and Sun Microsystems, to develop a standard way to embed SQL statements in Java programs--SQLJ. This work has …

  9. CallableStatement (Java Platform SE 8 ) - Oracle

    Retrieves the value of a JDBC NCLOB parameter as a java.sql.NClob object in the Java programming language. Parameters: parameterName - the name of the parameter

  10. java.sql (Java SE 22 & JDK 22) - Oracle

    This API includes a framework whereby different drivers can be installed dynamically to access different data sources. Although the JDBC API is mainly geared to passing SQL statements to …