Create a Statement object

2023-12-14 07:26:05  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