This topic describes some basic operations for using Client ODC.
Create a data source
Example: Create an OceanBase data source in MySQL mode in OceanBase Developer Center (ODC).
| Parameter | Example value |
|---|---|
| Data source name | mysql4.2.0 |
| Host IP address | xxx.x.x.x |
| Port | 8080 |
| Cluster name | odc_cluster |
| Tenant name | mysql_tenant |
| Database username | odc |
| Database password | ****** |
| sys tenant account | test |
| sys tenant password | ****** |
Obtain the connection information or connection string of the data source instance.
The connection string is in the format of
mysql -h host name -P port number -u database username@tenant name#cluster name -D default database -p ' database password'. Here is an example:-hxxx.x.x.x -P8080 -uodc@mysql_tenant#odc_cluster -Dodc -p'******'In the left-side navigation pane, click the plus sign (+) next to Data Sources and select Create Data Source.
ODC supports the following database types:
OceanBase MySQL or OceanBase Oracle: a database instance that you build in your own environment.
OB Cloud MySQL or OB Cloud Oracle: a database instance on Alibaba Cloud.
MySQL: a database instance running on MySQL Database.

In the Create Data Source panel, specify the following information.
Note
If you have obtained the connection string of OceanBase Database, you can obtain the following information from the connection string or use the Intelligent Parsing tool provided on the tab to fill in the information.

Note
For more information about data source configurations, see Manage data sources.
Click OK in the lower-right corner of the panel. In the dialog box that appears, enter the name of the data source.

Edit and execute SQL statements
Example: In the SQL window, create a table in the target database.
| Parameter | Example value |
|---|---|
| Data source | mysql4.2.0 |
| Database name | odc_test |
| Table name | employee |
In the SQL window, click Select a database.

In the Switch Database dialog box, select the database of the project.

In the SQL window, write an SQL statement to create a table named
employee.
CREATE TABLE odc_test.employee ( emp_no int(120) COMMENT 'Employee ID' NOT NULL, birthday date COMMENT 'Birthday' NULL, name varchar(120) COMMENT 'Name' NULL, CONSTRAINT cons_employee_empno PRIMARY KEY (emp_no)) DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci;After you complete writing SQL statements, click Press F8 in the toolbar to run all SQL statements in the current SQL window.
The following table describes the icons related to SQL statement execution.
Icon Description Press F8 Click this icon to run all SQL statements in the current SQL window. Run Current Statement (F9) Click this icon to run all selected SQL statements or the statement in the line where the pointer hovers. Abort Click this icon to abort the statements being executed. 
On the Result tab, you can view the execution records and logs.
