An open API service indexing awesome lists of open source software.

https://github.com/c653labs/pgproto

Pure Go library for parsing and encoding PostgreSQL protocol messages.
https://github.com/c653labs/pgproto

golang postgresql

Last synced: 5 months ago
JSON representation

Pure Go library for parsing and encoding PostgreSQL protocol messages.

Awesome Lists containing this project

README

          

# pgproto

[![GoDoc](https://godoc.org/github.com/c653labs/pgproto?status.svg)](https://godoc.org/github.com/c653labs/pgproto)

Package `pgproto` is a pure Go client and server protocol library for [PostgreSQL](https://www.postgresql.org/).
It provides the necessary structures and functions to parse and encode client or server PostgreSQL messages.

The scope of `pgproto` is only for parsing/encoding messages and does not handle connections between PostgreSQL client and server.

Installation:

```bash
go get github.com/c653labs/pgproto
```