Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/euantorano/postgres.nim
A PostgreSQL client library for Nim.
https://github.com/euantorano/postgres.nim
database-connector nim pgsql postgres
Last synced: about 1 month ago
JSON representation
A PostgreSQL client library for Nim.
- Host: GitHub
- URL: https://github.com/euantorano/postgres.nim
- Owner: euantorano
- License: bsd-3-clause
- Created: 2017-07-09T10:49:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-23T18:09:02.000Z (over 7 years ago)
- Last Synced: 2024-11-18T05:26:18.497Z (3 months ago)
- Topics: database-connector, nim, pgsql, postgres
- Language: Nim
- Size: 319 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# postgres [![CircleCI](https://circleci.com/gh/euantorano/postgres.nim.svg?style=svg)](https://circleci.com/gh/euantorano/postgres.nim)
A PostgreSQL client library for Nim. It features both a synchronous connection and an asynchronous one and aims to work fully with prepared statements.
**This is a work in progress, the only implemented features are:**
- [X] Connecting to server
- [X] No authentication
- [X] Cleartext authentication
- [X] MD5 authentication
- Other authentication methods (KerberosV5, ScmCredential, GssApi, Sppi and GssApiOrSppiData) are not planned to be implemented
- [ ] Running queies
- [X] Simple queries with no parameters
- [ ] Queries using `COPY FROM STDIN` or any other type of copy
- [X] Queries that return no results
- [ ] Queries that return a result set
- [X] Basic reading of results
- [ ] Handling columns of different types
- [ ] Prepared statements with bound parameters
- [ ] Connection pool## [Documentation](https://htmlpreview.github.io/?https://github.com/euantorano/postgres.nim/blob/master/docs/postgres.html)