Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Migrate | 12,273 | 815 | 6 days ago | 132 | June 11, 2023 | 294 | other | Go | ||
Database migrations. CLI and Golang library. | ||||||||||
Pq | 8,242 | 6,115 | 11,010 | a month ago | 49 | April 26, 2023 | 301 | mit | Go | |
Pure Go Postgres driver for database/sql | ||||||||||
Yugabyte Db | 8,091 | 7 hours ago | 5,361 | other | C | |||||
YugabyteDB - the cloud native distributed SQL database for mission-critical applications. | ||||||||||
Pgx | 7,790 | 3,333 | a day ago | 114 | February 28, 2023 | 128 | mit | Go | ||
PostgreSQL driver and toolkit for Go | ||||||||||
Postgres | 4,966 | 3 | 165 | 6 days ago | 38 | May 31, 2023 | 50 | unlicense | JavaScript | |
Postgres.js - The Fastest full featured PostgreSQL client for Node.js and Deno | ||||||||||
Psycopg2 | 3,034 | 6,031 | 1,893 | 10 hours ago | 21 | August 05, 2023 | 18 | other | C | |
PostgreSQL database adapter for the Python programming language | ||||||||||
Sqler | 1,918 | 2 years ago | 2 | July 12, 2021 | apache-2.0 | Go | ||||
write APIs using direct SQL queries with no hassle, let's rethink about SQL | ||||||||||
Pgjdbc | 1,311 | 26,004 | 2,244 | 21 days ago | 178 | March 17, 2023 | 447 | bsd-2-clause | Java | |
Postgresql JDBC Driver | ||||||||||
Vscode Sqltools | 1,281 | 1 | 61 | a month ago | 13 | October 16, 2022 | 191 | mit | TypeScript | |
Database management for VSCode | ||||||||||
Psycopg | 1,205 | 38 | 138 | a day ago | 32 | August 05, 2023 | 41 | lgpl-3.0 | Python | |
New generation PostgreSQL database adapter for the Python programming language |
A "crystal-db"-compliant postgres driver
shards.yml
file:dependencies:
pq:
github: abidon/crystal-pq
branch: master
require "db"
require "pq"
DB.open "postgres://localhost:5432/mydb?prepared_statements=false" do |db|
db.exec "INSERT INTO persons(firstname, lastname) VALUES ($1, $2)", "John", "Doe"
end
Note: At the moment, only unprepared statements have been implemented, you'll need to add the ?prepared_statements=false
at the end of the connection string to make it work properly.
Copyright 2017 Aurélien Bidon ([email protected])
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.