Connect
Telnet
Section titled “Telnet”telnet localhost 54321
Haru CLI
Section titled “Haru CLI”# Connect to default portharu-cli
# Connect to custom portharu-cli --port 54322
# Connect to remote hostharu-cli --host 192.168.1.100 --port 54321
Example session
Section titled “Example session”Welcome to HaruDB v0.0.5 🎉Type 'exit' to quit.
haruDB>haruDB> CREATE TABLE users (id, name, email);Table users created
haruDB> INSERT INTO users VALUES (1, 'Hareesh', 'hareesh@example.com');1 row inserted
haruDB> SELECT * FROM users;id | name | email1 | Hareesh | hareesh@example.com