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.
- Host: GitHub
- URL: https://github.com/c653labs/pgproto
- Owner: c653labs
- Created: 2018-03-28T21:34:27.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-15T23:21:38.000Z (over 5 years ago)
- Last Synced: 2025-08-13T22:05:26.886Z (11 months ago)
- Topics: golang, postgresql
- Language: Go
- Homepage: https://godoc.org/github.com/c653labs/pgproto
- Size: 209 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pgproto
[](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
```