{"id":468722,"date":"2025-07-26T03:00:12","date_gmt":"2025-07-26T03:00:12","guid":{"rendered":"http:\/\/savepearlharbor.com\/?p=468722"},"modified":"-0001-11-30T00:00:00","modified_gmt":"-0001-11-29T21:00:00","slug":"","status":"publish","type":"post","link":"https:\/\/savepearlharbor.com\/?p=468722","title":{"rendered":"<span>pgxWrappy \u2014 \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0436\u0438\u0437\u043d\u044c \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043a\u043e\u0440\u043e\u0442\u043a\u0430 \u0434\u043b\u044f \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0432 Go! \ufffd<\/span>"},"content":{"rendered":"<div><!--[--><!--]--><\/div>\n<div id=\"post-content-body\">\n<div>\n<div class=\"article-formatted-body article-formatted-body article-formatted-body_version-2\">\n<div xmlns=\"http:\/\/www.w3.org\/1999\/xhtml\">\n<h2>\ud83d\ude80 \u0417\u0430\u043f\u0430\u0440\u0438\u043b\u043e \u0440\u0443\u0447\u043d\u043e\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432 pgx? \u0412\u0441\u0442\u0440\u0435\u0447\u0430\u0439\u0442\u0435 pgxWrappy &#8212; \u0441\u0443\u043f\u0435\u0440-\u0443\u0434\u043e\u0431\u043d\u0443\u044e \u043e\u0431\u0435\u0440\u0442\u043a\u0443 \u0434\u043b\u044f PostgreSQL \u0432 Golang! \ud83d\udc18\ud83d\udca8<\/h2>\n<h3>\ud83d\udd25 \u0411\u043e\u043b\u044c\u0448\u0435 \u043d\u0438\u043a\u0430\u043a\u043e\u0433\u043e boilerplate-\u043a\u043e\u0434\u0430!<\/h3>\n<pre><code class=\"go\">\/\/ \ud83d\udeab \u0411\u042b\u041b\u041e (\u043a\u043e\u0448\u043c\u0430\u0440 \u043d\u0430 10 \u0441\u0442\u0440\u043e\u043a): rows, _ := conn.Query(ctx, \"SELECT id, name FROM users\") defer rows.Close() var users []User for rows.Next() {     var u User     rows.Scan(&amp;u.ID, &amp;u.Name)     users = append(users, u) }  \/\/ \u2705 \u0421\u0422\u0410\u041b\u041e (\u043c\u0430\u0433\u0438\u044f \u0432 1 \u0441\u0442\u0440\u043e\u043a\u0443!): var users []User db.Select(ctx, &amp;users, \"SELECT id, name FROM users\") \/\/ \u2728 \u0412\u043e\u043b\u0448\u0435\u0431\u0441\u0442\u0432\u043e! <\/code><\/pre>\n<h3>\u2728 \u0413\u043b\u0430\u0432\u043d\u044b\u0435 \u0444\u0438\u0448\u043a\u0438 pgxWrappy<\/h3>\n<h4>\ud83d\udccc \u0410\u0432\u0442\u043e\u043c\u0430\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u043e \u0447\u0442\u043e \u0443\u0433\u043e\u0434\u043d\u043e!<\/h4>\n<ul>\n<li>\n<p>\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \ud83c\udfd7<\/p>\n<\/li>\n<li>\n<p>\u0412\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \ud83c\udfd7\u27a1\ud83c\udfd7<\/p>\n<\/li>\n<li>\n<p>\u0421\u043b\u0430\u0439\u0441\u044b \ud83c\udf55<\/p>\n<\/li>\n<li>\n<p>\u0423\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438 \ud83d\udc49<\/p>\n<\/li>\n<li>\n<p>\u041a\u0430\u0441\u0442\u043e\u043c\u043d\u044b\u0435 \u0442\u0438\u043f\u044b \ud83c\udfa8<\/p>\n<\/li>\n<\/ul>\n<h4>\ufffd \u041f\u0440\u0438\u043c\u0435\u0440 \u0441 \u0432\u043b\u043e\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u044c\u044e:<\/h4>\n<pre><code class=\"go\">type Profile struct {     Bio  string `db:\"bio\"`     Pic  string `db:\"avatar_url\"` }  type User struct {     ID      int     `db:\"id\"`     Name    string  `db:\"name\"`     Profile Profile `db:\"profile\"` \/\/ \ud83d\udcab \u0410\u0432\u0442\u043e\u0440\u0430\u0441\u043a\u0440\u044b\u0442\u0438\u0435 \u0432\u043b\u043e\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u0438! }  \/\/ \u0417\u0430\u043f\u0440\u043e\u0441 \u043f\u0440\u043e\u0441\u0442\u043e \u0434\u043e\u043b\u0436\u0435\u043d \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c profile_bio \u0438 profile_avatar_url db.Get(ctx, &amp;user, \"SELECT ..., bio AS profile_bio, avatar_url AS profile_avatar_url ...\") <\/code><\/pre>\n<h3>\ud83d\udea6 \u0422\u0440\u0438 \u043f\u0440\u0438\u0447\u0438\u043d\u044b \u0432\u044b\u0431\u0440\u0430\u0442\u044c pgxWrappy:<\/h3>\n<ol>\n<li>\n<p><strong>\u23f1 \u042d\u043a\u043e\u043d\u043e\u043c\u0438\u044f 30% \u0432\u0440\u0435\u043c\u0435\u043d\u0438<\/strong> \u043d\u0430 \u0440\u0443\u0442\u0438\u043d\u043d\u043e\u043c \u043a\u043e\u0434\u0435<\/p>\n<\/li>\n<li>\n<p><strong>\ud83d\udcda \u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u043c \u0432\u0441\u044e \u043c\u043e\u0449\u044c pgx<\/strong> \u043f\u043e\u0434 \u043a\u0430\u043f\u043e\u0442\u043e\u043c<\/p>\n<\/li>\n<li>\n<p><strong>\ud83c\udfaf \u041f\u0440\u043e\u0441\u0442\u043e\u0442\u0430 \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438<\/strong> &#8212; \u043f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u043a \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c \u043f\u0440\u043e\u0435\u043a\u0442\u0430\u043c<\/p>\n<\/li>\n<\/ol>\n<h3>\u26a1 \u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u0441\u0442\u0430\u0440\u0442<\/h3>\n<pre><code class=\"bash\">go get -u github.com\/Arlandaren\/pgxWrappy # \u2b07\ufe0f \u041e\u0434\u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 - \u0438 \u0433\u043e\u0442\u043e\u0432\u043e! <\/code><\/pre>\n<pre><code class=\"go\">\/\/ \ud83d\udee0 \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0437\u0430 5 \u0441\u0435\u043a\u0443\u043d\u0434: db := pgxwrappy.NewWrapper(pool) \/\/ \ud83c\udfaf \u0412\u043e\u0442 \u0438 \u0432\u0441\u0451!  \/\/ \ud83d\udcbe \u041f\u0440\u0438\u043c\u0435\u0440 CRUD: db.Get(ctx, &amp;user, \"SELECT * FROM users WHERE id=$1\", 42)       \/\/ READ db.Exec(ctx, \"UPDATE users SET name=$1 WHERE id=$2\", \"Bob\", 42) \/\/ UPDATE <\/code><\/pre>\n<h3>\ud83c\udfc6 \u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 \u0441 \u0430\u043d\u0430\u043b\u043e\u0433\u0430\u043c\u0438<\/h3>\n<div>\n<div class=\"table\">\n<table>\n<tbody>\n<tr>\n<th>\n<p align=\"left\">\n<\/th>\n<th>\n<p align=\"left\">pgxWrappy<\/p>\n<\/th>\n<th>\n<p align=\"left\">\u0427\u0438\u0441\u0442\u044b\u0439 pgx<\/p>\n<\/th>\n<th>\n<p align=\"left\">GORM<\/p>\n<\/th>\n<th>\n<p align=\"left\">sqlx<\/p>\n<\/th>\n<\/tr>\n<tr>\n<td>\n<p align=\"left\">\u0423\u0434\u043e\u0431\u0441\u0442\u0432\u043e<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude0d<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude10<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude0a<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude0a<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td>\n<p align=\"left\">\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude80\ud83d\ude80\ud83d\ude80<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude80\ud83d\ude80\ud83d\ude80\ud83d\ude80<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude80<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude80\ud83d\ude80<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td>\n<p align=\"left\">\u0412\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u274c<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td>\n<p align=\"left\">PostgreSQL \u0444\u0438\u0447\u0438<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705\u2705<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705\u2705\u2705<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705\u2705<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<blockquote>\n<p>\ud83d\udca1 <strong>\u0418\u0434\u0435\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043b\u0430\u043d\u0441<\/strong> \u043c\u0435\u0436\u0434\u0443 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e \u0438 \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u043e\u043c!<\/p>\n<\/blockquote>\n<h3>\ud83c\udf81 \u0411\u043e\u043d\u0443\u0441\u044b:<\/h3>\n<ul>\n<li>\n<p>\ud83e\uddf5 \u041f\u043e\u0442\u043e\u043a\u043e\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c \u0438\u0437 \u043a\u043e\u0440\u043e\u0431\u043a\u0438<\/p>\n<\/li>\n<li>\n<p>\ud83d\udd04 \u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 context.Context<\/p>\n<\/li>\n<li>\n<p>\ud83d\udcdb \u042f\u0441\u043d\u044b\u0435 \u043e\u0448\u0438\u0431\u043a\u0438 \u0441 stack trace<\/p>\n<\/li>\n<li>\n<p>\ud83e\udde9 \u041f\u0440\u043e\u0441\u0442\u043e\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430<\/p>\n<\/li>\n<\/ul>\n<h3>\ud83d\udc8c<\/h3>\n<p>\ud83d\udc96 <strong>\u041d\u0440\u0430\u0432\u0438\u0442\u0441\u044f \u0438\u0434\u0435\u044f?<\/strong> \u041f\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0437\u0432\u0435\u0437\u0434\u0443 \u043d\u0430 GitHub:<br \/> <a href=\"https:\/\/github.com\/Arlandaren\/pgxWrappy\" rel=\"noopener noreferrer nofollow\">https:\/\/github.com\/Arlandaren\/pgxWrappy<\/a><\/p>\n<p>\ud83d\udee0 <strong>\u0425\u043e\u0442\u0438\u0442\u0435 \u043f\u043e\u043c\u043e\u0447\u044c?<\/strong> \u041f\u0440\u0438\u0441\u044b\u043b\u0430\u0439\u0442\u0435 PR \u0438 \u0438\u0434\u0435\u0438!<br \/> \ud83d\udc1e <strong>\u041d\u0430\u0448\u043b\u0438 \u0431\u0430\u0433?<\/strong> \u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0439\u0442\u0435 issue!<\/p>\n<p><strong>pgxWrappy<\/strong> &#8212; \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0436\u0438\u0437\u043d\u044c \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043a\u043e\u0440\u043e\u0442\u043a\u0430 \u0434\u043b\u044f \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f! \ud83d\ude01<\/p>\n<\/div>\n<\/div>\n<\/div>\n<p><!----><!----><\/div>\n<p><!----><!----><br \/> \u0441\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b \u0441\u0442\u0430\u0442\u044c\u0438 <a href=\"https:\/\/habr.com\/ru\/articles\/931242\/\"> https:\/\/habr.com\/ru\/articles\/931242\/<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<div><!--[--><!--]--><\/div>\n<div id=\"post-content-body\">\n<div>\n<div class=\"article-formatted-body article-formatted-body article-formatted-body_version-2\">\n<div xmlns=\"http:\/\/www.w3.org\/1999\/xhtml\">\n<h2>\ud83d\ude80 \u0417\u0430\u043f\u0430\u0440\u0438\u043b\u043e \u0440\u0443\u0447\u043d\u043e\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432 pgx? \u0412\u0441\u0442\u0440\u0435\u0447\u0430\u0439\u0442\u0435 pgxWrappy &#8212; \u0441\u0443\u043f\u0435\u0440-\u0443\u0434\u043e\u0431\u043d\u0443\u044e \u043e\u0431\u0435\u0440\u0442\u043a\u0443 \u0434\u043b\u044f PostgreSQL \u0432 Golang! \ud83d\udc18\ud83d\udca8<\/h2>\n<h3>\ud83d\udd25 \u0411\u043e\u043b\u044c\u0448\u0435 \u043d\u0438\u043a\u0430\u043a\u043e\u0433\u043e boilerplate-\u043a\u043e\u0434\u0430!<\/h3>\n<pre><code class=\"go\">\/\/ \ud83d\udeab \u0411\u042b\u041b\u041e (\u043a\u043e\u0448\u043c\u0430\u0440 \u043d\u0430 10 \u0441\u0442\u0440\u043e\u043a): rows, _ := conn.Query(ctx, \"SELECT id, name FROM users\") defer rows.Close() var users []User for rows.Next() {     var u User     rows.Scan(&amp;u.ID, &amp;u.Name)     users = append(users, u) }  \/\/ \u2705 \u0421\u0422\u0410\u041b\u041e (\u043c\u0430\u0433\u0438\u044f \u0432 1 \u0441\u0442\u0440\u043e\u043a\u0443!): var users []User db.Select(ctx, &amp;users, \"SELECT id, name FROM users\") \/\/ \u2728 \u0412\u043e\u043b\u0448\u0435\u0431\u0441\u0442\u0432\u043e! <\/code><\/pre>\n<h3>\u2728 \u0413\u043b\u0430\u0432\u043d\u044b\u0435 \u0444\u0438\u0448\u043a\u0438 pgxWrappy<\/h3>\n<h4>\ud83d\udccc \u0410\u0432\u0442\u043e\u043c\u0430\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u043e \u0447\u0442\u043e \u0443\u0433\u043e\u0434\u043d\u043e!<\/h4>\n<ul>\n<li>\n<p>\u0421\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \ud83c\udfd7<\/p>\n<\/li>\n<li>\n<p>\u0412\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \ud83c\udfd7\u27a1\ud83c\udfd7<\/p>\n<\/li>\n<li>\n<p>\u0421\u043b\u0430\u0439\u0441\u044b \ud83c\udf55<\/p>\n<\/li>\n<li>\n<p>\u0423\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438 \ud83d\udc49<\/p>\n<\/li>\n<li>\n<p>\u041a\u0430\u0441\u0442\u043e\u043c\u043d\u044b\u0435 \u0442\u0438\u043f\u044b \ud83c\udfa8<\/p>\n<\/li>\n<\/ul>\n<h4>\ufffd \u041f\u0440\u0438\u043c\u0435\u0440 \u0441 \u0432\u043b\u043e\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u044c\u044e:<\/h4>\n<pre><code class=\"go\">type Profile struct {     Bio  string `db:\"bio\"`     Pic  string `db:\"avatar_url\"` }  type User struct {     ID      int     `db:\"id\"`     Name    string  `db:\"name\"`     Profile Profile `db:\"profile\"` \/\/ \ud83d\udcab \u0410\u0432\u0442\u043e\u0440\u0430\u0441\u043a\u0440\u044b\u0442\u0438\u0435 \u0432\u043b\u043e\u0436\u0435\u043d\u043d\u043e\u0441\u0442\u0438! }  \/\/ \u0417\u0430\u043f\u0440\u043e\u0441 \u043f\u0440\u043e\u0441\u0442\u043e \u0434\u043e\u043b\u0436\u0435\u043d \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c profile_bio \u0438 profile_avatar_url db.Get(ctx, &amp;user, \"SELECT ..., bio AS profile_bio, avatar_url AS profile_avatar_url ...\") <\/code><\/pre>\n<h3>\ud83d\udea6 \u0422\u0440\u0438 \u043f\u0440\u0438\u0447\u0438\u043d\u044b \u0432\u044b\u0431\u0440\u0430\u0442\u044c pgxWrappy:<\/h3>\n<ol>\n<li>\n<p><strong>\u23f1 \u042d\u043a\u043e\u043d\u043e\u043c\u0438\u044f 30% \u0432\u0440\u0435\u043c\u0435\u043d\u0438<\/strong> \u043d\u0430 \u0440\u0443\u0442\u0438\u043d\u043d\u043e\u043c \u043a\u043e\u0434\u0435<\/p>\n<\/li>\n<li>\n<p><strong>\ud83d\udcda \u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u043c \u0432\u0441\u044e \u043c\u043e\u0449\u044c pgx<\/strong> \u043f\u043e\u0434 \u043a\u0430\u043f\u043e\u0442\u043e\u043c<\/p>\n<\/li>\n<li>\n<p><strong>\ud83c\udfaf \u041f\u0440\u043e\u0441\u0442\u043e\u0442\u0430 \u043c\u0438\u0433\u0440\u0430\u0446\u0438\u0438<\/strong> &#8212; \u043f\u043e\u0434\u0445\u043e\u0434\u0438\u0442 \u043a \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u043c \u043f\u0440\u043e\u0435\u043a\u0442\u0430\u043c<\/p>\n<\/li>\n<\/ol>\n<h3>\u26a1 \u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u0441\u0442\u0430\u0440\u0442<\/h3>\n<pre><code class=\"bash\">go get -u github.com\/Arlandaren\/pgxWrappy # \u2b07\ufe0f \u041e\u0434\u043d\u0430 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 - \u0438 \u0433\u043e\u0442\u043e\u0432\u043e! <\/code><\/pre>\n<pre><code class=\"go\">\/\/ \ud83d\udee0 \u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0437\u0430 5 \u0441\u0435\u043a\u0443\u043d\u0434: db := pgxwrappy.NewWrapper(pool) \/\/ \ud83c\udfaf \u0412\u043e\u0442 \u0438 \u0432\u0441\u0451!  \/\/ \ud83d\udcbe \u041f\u0440\u0438\u043c\u0435\u0440 CRUD: db.Get(ctx, &amp;user, \"SELECT * FROM users WHERE id=$1\", 42)       \/\/ READ db.Exec(ctx, \"UPDATE users SET name=$1 WHERE id=$2\", \"Bob\", 42) \/\/ UPDATE <\/code><\/pre>\n<h3>\ud83c\udfc6 \u0421\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 \u0441 \u0430\u043d\u0430\u043b\u043e\u0433\u0430\u043c\u0438<\/h3>\n<div>\n<div class=\"table\">\n<table>\n<tbody>\n<tr>\n<th>\n<p align=\"left\">\n<\/th>\n<th>\n<p align=\"left\">pgxWrappy<\/p>\n<\/th>\n<th>\n<p align=\"left\">\u0427\u0438\u0441\u0442\u044b\u0439 pgx<\/p>\n<\/th>\n<th>\n<p align=\"left\">GORM<\/p>\n<\/th>\n<th>\n<p align=\"left\">sqlx<\/p>\n<\/th>\n<\/tr>\n<tr>\n<td>\n<p align=\"left\">\u0423\u0434\u043e\u0431\u0441\u0442\u0432\u043e<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude0d<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude10<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude0a<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude0a<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td>\n<p align=\"left\">\u041f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude80\ud83d\ude80\ud83d\ude80<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude80\ud83d\ude80\ud83d\ude80\ud83d\ude80<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude80<\/p>\n<\/td>\n<td>\n<p align=\"left\">\ud83d\ude80\ud83d\ude80<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td>\n<p align=\"left\">\u0412\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u274c<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705<\/p>\n<\/td>\n<\/tr>\n<tr>\n<td>\n<p align=\"left\">PostgreSQL \u0444\u0438\u0447\u0438<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705\u2705<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705\u2705\u2705<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705<\/p>\n<\/td>\n<td>\n<p align=\"left\">\u2705\u2705<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<\/div>\n<blockquote>\n<p>\ud83d\udca1 <strong>\u0418\u0434\u0435\u0430\u043b\u044c\u043d\u044b\u0439 \u0431\u0430\u043b\u0430\u043d\u0441<\/strong> \u043c\u0435\u0436\u0434\u0443 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c\u044e \u0438 \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u043e\u043c!<\/p>\n<\/blockquote>\n<h3>\ud83c\udf81 \u0411\u043e\u043d\u0443\u0441\u044b:<\/h3>\n<ul>\n<li>\n<p>\ud83e\uddf5 \u041f\u043e\u0442\u043e\u043a\u043e\u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c \u0438\u0437 \u043a\u043e\u0440\u043e\u0431\u043a\u0438<\/p>\n<\/li>\n<li>\n<p>\ud83d\udd04 \u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 context.Context<\/p>\n<\/li>\n<li>\n<p>\ud83d\udcdb \u042f\u0441\u043d\u044b\u0435 \u043e\u0448\u0438\u0431\u043a\u0438 \u0441 stack trace<\/p>\n<\/li>\n<li>\n<p>\ud83e\udde9 \u041f\u0440\u043e\u0441\u0442\u043e\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u043e\u043d\u0430\u043b\u0430<\/p>\n<\/li>\n<\/ul>\n<h3>\ud83d\udc8c<\/h3>\n<p>\ud83d\udc96 <strong>\u041d\u0440\u0430\u0432\u0438\u0442\u0441\u044f \u0438\u0434\u0435\u044f?<\/strong> \u041f\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0437\u0432\u0435\u0437\u0434\u0443 \u043d\u0430 GitHub:<br \/> <a href=\"https:\/\/github.com\/Arlandaren\/pgxWrappy\" rel=\"noopener noreferrer nofollow\">https:\/\/github.com\/Arlandaren\/pgxWrappy<\/a><\/p>\n<p>\ud83d\udee0 <strong>\u0425\u043e\u0442\u0438\u0442\u0435 \u043f\u043e\u043c\u043e\u0447\u044c?<\/strong> \u041f\u0440\u0438\u0441\u044b\u043b\u0430\u0439\u0442\u0435 PR \u0438 \u0438\u0434\u0435\u0438!<br \/> \ud83d\udc1e <strong>\u041d\u0430\u0448\u043b\u0438 \u0431\u0430\u0433?<\/strong> \u041e\u0442\u043a\u0440\u044b\u0432\u0430\u0439\u0442\u0435 issue!<\/p>\n<p><strong>pgxWrappy<\/strong> &#8212; \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0436\u0438\u0437\u043d\u044c \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043a\u043e\u0440\u043e\u0442\u043a\u0430 \u0434\u043b\u044f \u0440\u0443\u0447\u043d\u043e\u0433\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f! \ud83d\ude01<\/p>\n<\/div>\n<\/div>\n<\/div>\n<p><!----><!----><\/div>\n<p><!----><!----><br \/> \u0441\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b \u0441\u0442\u0430\u0442\u044c\u0438 <a href=\"https:\/\/habr.com\/ru\/articles\/931242\/\"> https:\/\/habr.com\/ru\/articles\/931242\/<\/a><br \/><\/br><\/br><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[],"tags":[],"class_list":["post-468722","post","type-post","status-publish","format-standard","hentry"],"_links":{"self":[{"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/posts\/468722","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=468722"}],"version-history":[{"count":0,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=\/wp\/v2\/posts\/468722\/revisions"}],"wp:attachment":[{"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=468722"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=468722"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/savepearlharbor.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=468722"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}