Create a Statement object

2023-07-27 06:37:12  Updated

To connect to a database, OceanBase Connector/J first creates a Connection object and then creates a Statement object.

The Connection object uses the createStatement method to return a Statement object.

The following example creates a Statement object:

Statement st = conn.createStatement();

Contact Us