Quickstart
The smallest Rust example: connect to KalamDB, authenticate, and run one SQL query.
Source: link/sdks/rust/examples/quickstart/
What it does
- Builds a
KalamLinkClientwith a server URL and credentials - Runs
SELECT CURRENT_USER() - Prints the result and disconnects
No WebSocket or subscriptions — just HTTP SQL.
Run it
Expected output:
Source walkthrough
Use in your own project
Install from crates.io :
See Setup & Quick Start for the full install guide.
Next
Last updated on