Java / JDBC
Explain JDBC statement.
JDBC statements helps to issue sql queries to the database using JDBC connection. createStatement method from connection object can be called to create a JDBC statement. Once created the SQL query can be passed to it and executing using different methods such as execute, executeUpdate and executeQuery.
More Related questions...