pq
go-sql-driver/mysql
Our great sponsors
pq | go-sql-driver/mysql | |
---|---|---|
27 | 18 | |
7,939 | 13,144 | |
1.3% | 1.1% | |
6.7 | 5.9 | |
2 days ago | 7 days ago | |
Go | Go | |
MIT License | Mozilla Public License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
pq
- Ask HN: Slimvoice Alternative?
- Fly.io and Tailscale Saved Notado
- Restful API with Golang practical approach
-
Connect REST API to database with Go
Go’s standard library was not built to include any specific database drivers. So we need to install a third party package. In this case we are going to install https://github.com/lib/pq. Run following command:
-
Getting EOF when connecting to a database using sqlx
For Postgres the driver comes from "github.com/lib/pq" and then it is just "postgres".
-
Is this a proper setup in Go for a postgres api?
With regards to 2. -- also, it looks like there's an important unfixed issue https://github.com/lib/pq/issues/939. I haven't verified whether the issue is up to date.
-
Connect to postgres database using connection string?
Postgres (pure Go): https://github.com/lib/pq [*]Postgres (uses cgo): https://github.com/jbarham/gopgsqldriver Postgres (pure Go): https://github.com/jackc/pgx [*]
-
Golang future web frameworks!
lib/pq 7.3k Stars, Used by 63k
-
psql driver that supports the sql.NamedArgs & sql.Named?
I am using the lib/pq driver. is there a driver that does allow for this syntax or is there something I can change?
- Why all the hate?
go-sql-driver/mysql
-
Questions regarding prepared statements in database/sql
I understand that database/db is an abstraction. As to the driver, sorry, it completely went out of my head. The guide primarily focuses on https://github.com/go-sql-driver/mysql, which is also what I’m interested in.
-
Make Deno MySQL driver works better
Authentication method mismatch is not allowed to occur more than once. It is not a part of MySQL protocol. go-sql-driver also has the same rule.
-
Golang future web frameworks!
go-sql-driver/mysql 12.1k Stars, Used by 72.4k
-
Finding an Authorization Bypass on My Own Website
> mysql_real_escape_string is still vulnerable when being used with some exotic character sets
Indeed -- mysql_real_escape_string "mostly" fixes this problem by requiring a connection as one of its args, and since it's usually aware of the connection state, it can check that to see if one of those exotic charsets is in-use. But the problem is that there are multiple ways to change the connection charset, some of which the driver is aware of (e.g. in PHP mysqli set_charset) but some it is not (running textual statements like SET NAMES or SET CHARACTER SET).
But generally an attacker won't ever have the ability to set an arbitrary exotic character set for the connection, unless they already have some other sql injection mechanism, in which case it's a moot point :)
Driver documentation also typically mentions this problem. For example, here's the doc for doing client-side param interpolation in the most popular MySQL driver for Golang: https://github.com/go-sql-driver/mysql#interpolateparams
It also explicitly detects if your initial connection settings attempt to use one of those charsets along with param interpolation, and throws an error if so: https://github.com/go-sql-driver/mysql/blob/21f789cd/dsn.go#...
> Couldn't one just save the extra round-trip with length-prefixed strings by sending the query together with the parameters in a single message?
AFAIK, no, not with the traditional MySQL binary protocol. The newer "X protocol" introduced in MySQL 5.7 does allow this, but it is not widely implemented in drivers.
-
[Question] Working with databases/storing data in Go applications.
However, you can use something like this https://github.com/go-reform/reform to help you with, I will call it automating the code writing. But I have always opted to one of the supported drivers and written a queries myself using for example this https://github.com/go-sql-driver/mysql.
-
Help a Go Lang neophyte become a veteran
For DB connection, you'll need something like https://github.com/Go-SQL-Driver/MySQL/ for mysql
-
Which SQL driver to use with Postgres
I'm following Alex Edwards web dev book, he uses MySQL with go-sql-driver/mysql , i want to use Postgres, which one should I use?
-
Are both MySQL and Postgres drivers similar in quality?
go-sql-driver/mysql is the main pure golang implementation and is the most feature complete. Very happy with the result that it provides.
https://github.com/go-sql-driver/mysql/issues/561 , and it's not coming anytime soon
-
Do you use connection attributes and assign a name to your clients when connecting to MySQL?
Missing support: - Go go-sql-driver/mysql - PHP
What are some alternatives?
pgx - PostgreSQL driver and toolkit for Go
sqlx - general purpose extensions to golang's database/sql
go-sqlite3 - sqlite3 driver for go using database/sql
opentelemetry-collector - OpenTelemetry Collector
vertica-sql-go - Official native Go client for the Vertica Analytics Database.
goriak - goriak - Go language driver for Riak KV
go-adodb - Microsoft ActiveX Object DataBase driver for go that using exp/sql
gofreetds - Go Sql Server database driver.
go-mssqldb - Microsoft SQL server driver written in go language