Updated on 2022-12-08 GMT+08:00

Development Guideline

Development Guideline

As an independent DBMS system, ClickHouse allows you to use the SQL language to perform common operations. In the development program example, the clickhouse-jdbc API is used for description. The development process consists of the following parts:

  • Setting properties: Sets the parameters for connecting to a ClickHouse service instance.
  • Establishing a connection: Establishes a connection to the ClickHouse service instance.
  • Creating a database: Creates a ClickHouse database.
  • Creating a table: Creates a table in the ClickHouse database.
  • Inserting data: Inserts data into a ClickHouse table.
  • Querying data: Queries data in ClickHouse tables.
  • Deleting a table: Deletes a ClickHouse table.