-
Notifications
You must be signed in to change notification settings - Fork 1
Driver: Add page about Erlang #420
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
WalkthroughAdds a new Erlang connectivity guide (ODBC and epgsql) with examples, Docker/Podman run and build/run instructions, and CrateDB Cloud SSL notes; also registers an Erlang driver card and adds Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant ErlangApp as Erlang App
participant Docs as Docs/examples
participant CrateDB as CrateDB
rect rgba(135,206,250,0.12)
Note over ErlangApp,CrateDB: ODBC flow (odbc_example.erl)
ErlangApp->>CrateDB: open ODBC connection
ErlangApp->>CrateDB: execute SQL query
CrateDB-->>ErlangApp: return rows
ErlangApp->>ErlangApp: close connection
end
rect rgba(144,238,144,0.12)
Note over ErlangApp,CrateDB: epgsql flow (epgsql_example.erl)
ErlangApp->>CrateDB: epgsql:connect(host,port,creds,ssl_opts?)
ErlangApp->>CrateDB: epgsql:squery(SQL)
CrateDB-->>ErlangApp: result
ErlangApp->>ErlangApp: epgsql:close
end
Note right of Docs: Docs supply config snippets, Docker/Podman commands, and Cloud SSL guidance
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
About
What the title says.
Preview
https://cratedb-guide--420.org.readthedocs.build/connect/erlang/