Skip to content

euantorano/postgres.nim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

postgres CircleCI

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:

  • Connecting to server
    • No authentication
    • Cleartext authentication
    • MD5 authentication
    • Other authentication methods (KerberosV5, ScmCredential, GssApi, Sppi and GssApiOrSppiData) are not planned to be implemented
  • Running queies
    • Simple queries with no parameters
      • Queries using COPY FROM STDIN or any other type of copy
      • Queries that return no results
      • Queries that return a result set
        • Basic reading of results
        • Handling columns of different types
    • Prepared statements with bound parameters
  • Connection pool

Releases

No releases published

Packages

No packages published

Languages