Jackc/pgx: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 50: Line 50:
if err != nil {
if err != nil {
   ...
   ...
} else {
  fmt.Printf("%s\n", commandTag)
}
</syntaxhighlight>
==Create a Table==
<syntaxhighlight lang='go'>
sql := `CREATE TABLE IF NOT EXISTS TEST ("ID" int, "NAME" varchar(10))`
commandTag, err = db.Exec(sql)
if err != nil {
...
} else {
} else {
   fmt.Printf("%s\n", commandTag)
   fmt.Printf("%s\n", commandTag)
}
}
</syntaxhighlight>
</syntaxhighlight>

Revision as of 22:20, 21 May 2024

External

Internal

Overview

jackc/pgx is a PostgreSQL low-level, high performance driver and toolkit that exposes PostgreSQL-specific features such as LISTEN/NOTIFY and COPY. It also includes an adapter for the standard database/sql package, but using database/sql is optional. It understands PostgreSQL data types. jackc/pgx is recommended when the application only targets PostgreSQL.

Installation

go get github.com/jackc/pgx/v5

Database Operations

Open a Connection

import (
	"context"
	"fmt"
	"os"

	"github.com/jackc/pgx/v5"
)

...

ctx := context.Background()
connectionString := "postgres://postgres:@localhost:5432"
conn, err := pgx.Connect(ctx, connectionString)
if err != nil {
  ...
}
defer func() {
  if err = conn.Close(ctx); err != nil {
    ...
  }
}()

if err = conn.Ping(ctx); err != nil {
  ...
}
fmt.Printf("success\n")

Create a Schema

sql := `CREATE SCHEMA IF NOT EXISTS blue`
commandTag, err := conn.Exec(ctx, sql)
if err != nil {
  ...
} else {
  fmt.Printf("%s\n", commandTag)
}

Create a Table

sql := `CREATE TABLE IF NOT EXISTS TEST ("ID" int, "NAME" varchar(10))`
commandTag, err = db.Exec(sql)
if err != nil {
 ...
} else {
  fmt.Printf("%s\n", commandTag)
}