How to Use DingoDB
We provide the following modes to access to DingoDB.
JDBC Driver
In DingoDB cluster, A JDBC Driver proxy should be start, it will pass the SQL query to Executor.
./bin/start-executor.sh
The usage about SQL can be reference to Play with DingoDB using SQL
Sqlline Mode
DingoDB
In DingoDB install path, you can start a sqlline to build connection to the cluster.
./bin/sqlline.sh host root

MySQL
In MySQL install path, you can start a sqlline to build connection to the cluster.
mysql -h ip -P 3307 -u root -p ******
