ora

package module
v2.0.0-...-793370c Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 29, 2015 License: MIT Imports: 19 Imported by: 0

README

Golang Oracle Database Driver

Package ora implements an Oracle database driver for the Go programming language.

An Oracle database may be accessed through the database/sql package or through the ora package directly. database/sql offers connection pooling, thread safety, a consistent API to multiple database technologies and a common set of Go types. The ora package offers additional features including pointers, slices, nullable types, numerics of various sizes, Oracle-specific types, Go return type configuration, and Oracle abstractions such as environment, server and session.

The ora package is written with the Oracle Call Interface (OCI) C-language libraries provided by Oracle. The OCI libraries are a standard for client application communication and driver communication with Oracle databases.

The ora package has been verified to work with

  • Oracle Enterprise 12c (12.1.0.1.0), Windows 8.1 and AMD64.
  • Oracle Standard 11g (11.2.0.4.0), Linux x86_64 (RHEL6)


Installation

Minimum requirements are Go 1.3 with CGO enabled, a GCC C compiler, and Oracle 11g (11.2.0.4.0) or Oracle Instant Client (11.2.0.4.0).

Install Oracle or Oracle Instant Client.

Set the CGO_CFLAGS and CGO_LDFLAGS environment variables to locate the OCI headers and library. For example:

// example OS environment variables for Oracle 12c on Windows
CGO_CFLAGS=-Ic:/oracle/home/OCI/include/
CGO_LDFLAGS=c:/oracle/home/BIN/oci.dll

CGO_CFLAGS identifies the location of the OCI header file. CGO_LDFLAGS identifies the location of the OCI library. These locations will vary based on whether an Oracle database is locally installed or whether the Oracle instant client libraries are locally installed.

The ora package has no external Go dependencies and is available on GitHub:

go get github.com/rana/ora
Data Types

The ora package supports all built-in Oracle data types. The supported Oracle built-in data types are NUMBER, BINARY_DOUBLE, BINARY_FLOAT, FLOAT, DATE, TIMESTAMP, TIMESTAMP WITH TIME ZONE, TIMESTAMP WITH LOCAL TIME ZONE, INTERVAL YEAR TO MONTH, INTERVAL DAY TO SECOND, CHAR, NCHAR, VARCHAR, VARCHAR2, NVARCHAR2, LONG, CLOB, NCLOB, BLOB, LONG RAW, RAW, ROWID and BFILE. SYS_REFCURSOR is also supported.

Oracle does not provide a built-in boolean type. Oracle provides a single-byte character type. A common practice is to define two single-byte characters which represent true and false. The ora package adopts this approach. The oracle package associates a Go bool value to a Go rune and sends and receives the rune to a CHAR(1 BYTE) column or CHAR(1 CHAR) column.

The default false rune is zero 0. The default true rune is one 1. The bool rune association may be configured or disabled when directly using the ora package but not with the database/sql package.

SQL Placeholder Syntax

Within a SQL string a placeholder may be specified to indicate where a Go variable is placed. The SQL placeholder is an Oracle identifier, from 1 to 30 characters, prefixed with a colon :. For example:

// example Oracle placeholder uses a colon
INSERT INTO T1 (C1) VALUES (:C1)

Placeholders within a SQL statement are bound by position. The actual name is not used by the ora package driver e.g., placeholder names :c1, :1, or :xyz are treated equally.

Working With The Sql Package

You may access an Oracle database through the database/sql package. The database/sql package offers a consistent API across different databases, connection pooling, thread safety and a set of common Go types. database/sql makes working with Oracle straight-forward.

The ora package implements interfaces in the database/sql/driver package enabling database/sql to communicate with an Oracle database. Using database/sql ensures you never have to call the ora package directly.

When using database/sql, the mapping between Go types and Oracle types may be changed slightly. The database/sql package has strict expectations on Go return types. The Go-to-Oracle type mapping for database/sql is:

Go type		Oracle type

int64		NUMBER°, BINARY_DOUBLE, BINARY_FLOAT, FLOAT

float64		NUMBER¹, BINARY_DOUBLE, BINARY_FLOAT, FLOAT

time.Time	TIMESTAMP, TIMESTAMP WITH TIME ZONE, TIMESTAMP WITH LOCAL TIME ZONE, DATE

string		CHAR², NCHAR, VARCHAR, VARCHAR2, NVARCHAR2, LONG, CLOB, NCLOB

bool		CHAR(1 BYTE)³, CHAR(1 CHAR)³

[]byte		BLOB, LONG RAW, RAW


° A select-list column defined as an Oracle NUMBER with zero scale e.g.,
NUMBER(10,0) is returned as an int64. Either int64 or float64 may be inserted
into a NUMBER column with zero scale. float64 insertion will have its fractional
part truncated.

¹ A select-list column defined as an Oracle NUMBER with a scale greater than
zero e.g., NUMBER(10,4) is returned as a float64. Either int64 or float64 may
be inserted into a NUMBER column with a scale greater than zero.

² A select-list column defined as an Oracle CHAR with a length greater than 1
e.g., CHAR(2 BYTE) or CHAR(2 CHAR) is returned as a string. A Go string of any
length up to the column max length may be inserted into the CHAR column.

³ The Go bool value false is mapped to the zero rune '0'. The Go bool value
true is mapped to the one rune '1'.

To register the ora driver for use with sql.Open, you have to call ora.Register, once before sql.Open in your app:

func init() {
	ora.Register(nil)
}

You may specify an optional *DrvCfg to ora.Register to configure various configuration options including statement configuration and Rset configuration.

func init() {
	drvCfg := ora.NewDrvCfg()
	drvCfg.Env.StmtCfg.FalseRune = 'N'
	drvCfg.Env.StmtCfg.TrueRune = 'Y'
	drvCfg.Env.StmtCfg.Rset.TrueRune = 'Y'
	ora.Register(drvCfg)
}

When configuring the driver for use with database/sql, keep in mind that database/sql has strict Go type-to-Oracle type mapping expectations.

Working With The Oracle Package Directly

The ora package allows programming with pointers, slices, nullable types, numerics of various sizes, Oracle-specific types, Go return type configuration, and Oracle abstractions such as environment, server and session. When working with the ora package directly, the API is slightly different than database/sql.

When using the ora package directly, the mapping between Go types and Oracle types may be changed. The Go-to-Oracle type mapping for the ora package is:

Go type							Oracle type

int64, int32, int16, int8		NUMBER°, BINARY_DOUBLE, BINARY_FLOAT, FLOAT
uint64, uint32, uint16, uint8
Int64, Int32, Int16, Int8
Uint64, Uint32, Uint16, Uint8
*int64, *int32, *int16, *int8
*uint64, *uint32, *uint16, *uint8
[]int64, []int32, []int16, []int8
[]uint64, []uint32, []uint16, []uint8
[]Int64, []Int32, []Int16, []Int8
[]Uint64, []Uint32, []Uint16, []Uint8

float64, float32				NUMBER¹, BINARY_DOUBLE, BINARY_FLOAT, FLOAT
Float64, Float32
*float64, *float32
[]float64, []float32
[]Float64, []Float32

time.Time						TIMESTAMP, TIMESTAMP WITH TIME ZONE,
Time							TIMESTAMP WITH LOCAL TIME ZONE, DATE
*time.Time
[]time.Time
[]Time

string							CHAR², NCHAR, VARCHAR, VARCHAR2,
String							NVARCHAR2, LONG, CLOB, NCLOB, ROWID
*string
[]string
[]String

bool							CHAR(1 BYTE)³, CHAR(1 CHAR)³
Bool
*bool
[]bool
[]Bool

[]byte							BLOB, LONG RAW, RAW
[][]byte
Binary
[]Binary

IntervalYM						INTERVAL MONTH TO YEAR
[]IntervalYM

IntervalDS						INTERVAL DAY TO SECOND
[]IntervalDS

Bfile							BFILE

° A select-list column defined as an Oracle NUMBER with zero scale e.g.,
NUMBER(10,0) is returned as an int64 by default. Integer and floating point
numerics may be inserted into a NUMBER column with zero scale. Inserting a
floating point numeric will have its fractional part truncated.

¹ A select-list column defined as an Oracle NUMBER with a scale greater than
zero e.g., NUMBER(10,4) is returned as a float64 by default. Integer and
floating point numerics may be inserted into a NUMBER column with a scale
greater than zero.

² A select-list column defined as an Oracle CHAR with a length greater than 1
e.g., CHAR(2 BYTE) or CHAR(2 CHAR) is returned as a string. A Go string of any
length up to the column max length may be inserted into the CHAR column.

³ The Go bool value false is mapped to the zero rune '0'. The Go bool value
true is mapped to the one rune '1'.

An example of using the ora package directly:

package main

import (
	"fmt"
	"github.com/rana/ora"
)

func main() {
	// example usage of the ora package driver
	// connect to a server and open a session
	env, err := ora.OpenEnv(nil)
	defer env.Close()
	if err != nil {
		panic(err)
	}
	srvCfg := ora.NewSrvCfg()
	srvCfg.Dblink = "orcl"
	srv, err := env.OpenSrv(srvCfg)
	defer srv.Close()
	if err != nil {
		panic(err)
	}
	sesCfg := ora.NewSesCfg()
	sesCfg.Username = "test"
	sesCfg.Password = "test"
	ses, err := srv.OpenSes(sesCfg)
	defer ses.Close()
	if err != nil {
		panic(err)
	}

	// create table
	tableName := "t1"
	stmtTbl, err := ses.Prep(fmt.Sprintf("CREATE TABLE %v "+
		"(C1 NUMBER(19,0) GENERATED ALWAYS AS IDENTITY "+
		"(START WITH 1 INCREMENT BY 1), C2 VARCHAR2(48 CHAR))", tableName))
	defer stmtTbl.Close()
	if err != nil {
		panic(err)
	}
	rowsAffected, err := stmtTbl.Exe()
	if err != nil {
		panic(err)
	}
	fmt.Println(rowsAffected)

	// begin first transaction
	tx1, err := ses.StartTx()
	if err != nil {
		panic(err)
	}

	// insert record
	var id uint64
	str := "Go is expressive, concise, clean, and efficient."
	stmtIns, err := ses.Prep(fmt.Sprintf(
		"INSERT INTO %v (C2) VALUES (:C2) RETURNING C1 INTO :C1", tableName))
	defer stmtIns.Close()
	rowsAffected, err = stmtIns.Exe(str, &id)
	if err != nil {
		panic(err)
	}
	fmt.Println(rowsAffected)

	// insert nullable String slice
	a := make([]ora.String, 4)
	a[0] = ora.String{Value: "Its concurrency mechanisms make it easy to"}
	a[1] = ora.String{IsNull: true}
	a[2] = ora.String{Value: "It's a fast, statically typed, compiled"}
	a[3] = ora.String{Value: "One of Go's key design goals is code"}
	stmtSliceIns, err := ses.Prep(fmt.Sprintf(
		"INSERT INTO %v (C2) VALUES (:C2)", tableName))
	defer stmtSliceIns.Close()
	if err != nil {
		panic(err)
	}
	rowsAffected, err = stmtSliceIns.Exe(a)
	if err != nil {
		panic(err)
	}
	fmt.Println(rowsAffected)

	// fetch records
	stmtQry, err := ses.Prep(fmt.Sprintf(
		"SELECT C1, C2 FROM %v", tableName))
	defer stmtQry.Close()
	if err != nil {
		panic(err)
	}
	rset, err := stmtQry.Qry()
	if err != nil {
		panic(err)
	}
	for rset.Next() {
		fmt.Println(rset.Row[0], rset.Row[1])
	}
	if rset.Err != nil {
		panic(rset.Err)
	}

	// commit first transaction
	err = tx1.Commit()
	if err != nil {
		panic(err)
	}

	// begin second transaction
	tx2, err := ses.StartTx()
	if err != nil {
		panic(err)
	}
	// insert null String
	nullableStr := ora.String{IsNull: true}
	stmtTrans, err := ses.Prep(fmt.Sprintf(
		"INSERT INTO %v (C2) VALUES (:C2)", tableName))
	defer stmtTrans.Close()
	if err != nil {
		panic(err)
	}
	rowsAffected, err = stmtTrans.Exe(nullableStr)
	if err != nil {
		panic(err)
	}
	fmt.Println(rowsAffected)
	// rollback second transaction
	err = tx2.Rollback()
	if err != nil {
		panic(err)
	}

	// fetch and specify return type
	stmtCount, err := ses.Prep(fmt.Sprintf(
		"SELECT COUNT(C1) FROM %v WHERE C2 IS NULL", tableName), ora.U8)
	defer stmtCount.Close()
	if err != nil {
		panic(err)
	}
	rset, err = stmtCount.Qry()
	if err != nil {
		panic(err)
	}
	row := rset.NextRow()
	if row != nil {
		fmt.Println(row[0])
	}
	if rset.Err != nil {
		panic(rset.Err)
	}

	// create stored procedure with sys_refcursor
	stmtProcCreate, err := ses.Prep(fmt.Sprintf(
		"CREATE OR REPLACE PROCEDURE PROC1(P1 OUT SYS_REFCURSOR) AS BEGIN "+
			"OPEN P1 FOR SELECT C1, C2 FROM %v WHERE C1 > 2 ORDER BY C1; "+
			"END PROC1;",
		tableName))
	defer stmtProcCreate.Close()
	rowsAffected, err = stmtProcCreate.Exe()
	if err != nil {
		panic(err)
	}

	// call stored procedure
	// pass *Rset to Exe to receive the results of a sys_refcursor
	stmtProcCall, err := ses.Prep("CALL PROC1(:1)")
	defer stmtProcCall.Close()
	if err != nil {
		panic(err)
	}
	procRset := &ora.Rset{}
	rowsAffected, err = stmtProcCall.Exe(procRset)
	if err != nil {
		panic(err)
	}
	if procRset.IsOpen() {
		for procRset.Next() {
			fmt.Println(procRset.Row[0], procRset.Row[1])
		}
		if procRset.Err != nil {
			panic(procRset.Err)
		}
		fmt.Println(procRset.Len())
	}

	// Output:
	// 0
	// 1
	// 4
	// 1 Go is expressive, concise, clean, and efficient.
	// 2 Its concurrency mechanisms make it easy to
	// 3
	// 4 It's a fast, statically typed, compiled
	// 5 One of Go's key design goals is code
	// 1
	// 1
	// 3
	// 4 It's a fast, statically typed, compiled
	// 5 One of Go's key design goals is code
	// 3
}

Pointers may be used to capture out-bound values from a SQL statement such as an insert or stored procedure call. For example, a numeric pointer captures an identity value:

// given:
// CREATE TABLE T1 (
// C1 NUMBER(19,0) GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1),
// C2 VARCHAR2(48 CHAR))
var id int64
stmt, err = ses.Prep("INSERT INTO T1 (C2) VALUES ('GO') RETURNING C1 INTO :C1")
stmt.Exe(&id)

A string pointer captures an out parameter from a stored procedure:

// given:
// CREATE OR REPLACE PROCEDURE PROC1 (P1 OUT VARCHAR2) AS BEGIN P1 := 'GO'; END PROC1;
var str string
stmt, err = ses.Prep("CALL PROC1(:1)")
stmt.Exe(&str)

Slices may be used to insert multiple records with a single insert statement:

// insert one million rows with single insert statement
// given: CREATE TABLE T1 (C1 NUMBER)
values := make([]int64, 1000000)
for n, _ := range values {
	values[n] = int64(n)
}
rowsAffected, err := ses.PrepAndExe("INSERT INTO T1 (C1) VALUES (:C1)", values)

The ora package provides nullable Go types to support DML operations such as insert and select. The nullable Go types provided by the ora package are Int64, Int32, Int16, Int8, Uint64, Uint32, Uint16, Uint8, Float64, Float32, Time, IntervalYM, IntervalDS, String, Bool, Bytes and Bfile. For example, you may insert nullable strings and select nullable strings:

// insert String slice
// given: CREATE TABLE T1 (C1 VARCHAR2(48 CHAR))
a := make([]ora.String, 5)
a[0] = ora.String{Value: "Go is expressive, concise, clean, and efficient."}
a[1] = ora.String{Value: "Its concurrency mechanisms make it easy to"}
a[2] = ora.String{IsNull: true}
a[3] = ora.String{Value: "It's a fast, statically typed, compiled"}
a[4] = ora.String{Value: "One of Go's key design goals is code"}
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (:C1)")
stmt.Exe(a)

// Specify OraS to Prep method to return ora.String values
// fetch records
stmt, err = ses.Prep("SELECT C1 FROM T1", OraS)
rst, err := stmt.Qry()
for rst.Next() {
	fmt.Println(rst.Row[0])
}

The Stmt.Prep method is variadic accepting zero or more GoColumnType which define a Go return type for a select-list column. For example, a Prep call can be configured to return an int64 and a nullable Int64 from the same column:

// given: create table t1 (c1 number)
stmt, err = ses.Prep("SELECT C1, C1 FROM T1", ora.I64, ora.OraI64)
rst, err := stmt.Qry()
for rst.Next() {
	fmt.Println(rst.Row[0], rst.Row[1])
}

Go numerics of various sizes are supported in DML operations. The ora package supports int64, int32, int16, int8, uint64, uint32, uint16, uint8, float64 and float32. For example, you may insert a uint16 and select numerics of various sizes:

// insert uint16
// given: create table t1 (c1 number)
value := uint16(9)
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (:C1)")
stmt.Exe(value)

// select numerics of various sizes from the same column
stmt, err = ses.Prep(
	"SELECT C1, C1, C1, C1, C1, C1, C1, C1, C1, C1, FROM T1",
	ora.I64, ora.I32, ora.I16, ora.I8, ora.U64, ora.U32, ora.U16, ora.U8,
	ora.F64, ora.F32)
rst, err := stmt.Qry()
row := rst.NextRow()

If a non-nullable type is defined for a nullable column returning null, the Go type's zero value is returned.

GoColumnTypes defined by the ora package are:

Go type		GoColumnType

int64		I64

int32		I32

int16		I16

int8		I8

uint64		U64

uint32		U32

uint16		U16

uint8		U8

float64		F64

Int64		OraI64

Int32		OraI32

Int16		OraI16

Int8		OraI8

Uint64		OraU64

Uint32		OraU32

Uint16		OraU16

Uint8		OraU8

Float64		OraF64

Float32		OraF32

time.Time	T

Time		OraT

string		S

String		OraS

bool		B

Bool		OraB

[]byte		Bin

Raw			Bin

Lob°		Bin or S

default¹	D

° Lob will return binary data if the Oracle column is a BLOB; otherwise, Lob
  will return astring if the Oracle column is a CLOB.

¹ D represents a default mapping between a select-list column and a Go type.
The default mapping is defined in RsetCfg.

When Stmt.Prep doesn't receive a GoColumnType, or receives an incorrect GoColumnType, the default value defined in RsetCfg is used.

EnvCfg, SrvCfg, SesCfg, StmtCfg and RsetCfg are the main configuration structs. EnvCfg configures aspects of an Env. SrvCfg configures aspects of a Srv. SesCfg configures aspects of a Ses. StmtCfg configures aspects of a Stmt. RsetCfg configures aspects of Rset. StmtCfg and RsetCfg have the most options to configure. RsetCfg defines the default mapping between an Oracle select-list column and a Go type. StmtCfg may be set in an EnvCfg, SrvCfg, SesCfg and Stmt. RsetCfg may be set in a StmtCfg.

EnvCfg.StmtCfg, SrvCfg.StmtCfg, SesCfg.StmtCfg may optionally be specified to configure a statement. If StmtCfg isn't specified default values are applied. EnvCfg.StmtCfg, SrvCfg.StmtCfg, SesCfg.StmtCfg cascade to new descendent structs. When ora.OpenEnv() is called a specified EnvCfg is used or a default EnvCfg is created. Creating a Srv with env.OpenSrv() will use SrvCfg.StmtCfg if it is specified; otherwise, EnvCfg.StmtCfg is copied by value to SrvCfg.StmtCfg. Creating a Ses with srv.OpenSes() will use SesCfg.StmtCfg if it is specified; otherwise, SrvCfg.StmtCfg is copied by value to SesCfg.StmtCfg. Creating a Stmt with ses.Prep() will use SesCfg.StmtCfg if it is specified; otherwise, a new StmtCfg with default values is set on the Stmt. Call Stmt.Cfg() to change a Stmt's configuration.

An Env may contain multiple Srv. A Srv may contain multiple Ses. A Ses may contain multiple Stmt. A Stmt may contain multiple Rset.

// StmtCfg cascades to descendent structs
// EnvCfg -> SrvCfg -> SesCfg -> StmtCfg -> RsetCfg

Setting a RsetCfg on a StmtCfg does not cascade through descendent structs. Configuration of Stmt.Cfg takes effect prior to calls to Stmt.Exe and Stmt.Qry; consequently, any updates to Stmt.Cfg after a call to Stmt.Exe or Stmt.Qry are not observed.

One configuration scenario may be to set a server's select statements to return nullable Go types by default:

sc := ora.NewSrvCfg()
sc.Dblink = "orcl"
sc.StmtCfg.Rset.SetNumberInt(ora.OraI64)
sc.StmtCfg.Rset.SetNumberFloat(ora.OraF64)
sc.StmtCfg.Rset.SetBinaryDouble(ora.OraF64)
sc.StmtCfg.Rset.SetBinaryFloat(ora.OraF64)
sc.StmtCfg.Rset.SetFloat(ora.OraF64)
sc.StmtCfg.Rset.SetDate(ora.OraT)
sc.StmtCfg.Rset.SetTimestamp(ora.OraT)
sc.StmtCfg.Rset.SetTimestampTz(ora.OraT)
sc.StmtCfg.Rset.SetTimestampLtz(ora.OraT)
sc.StmtCfg.Rset.SetChar1(ora.OraB)
sc.StmtCfg.Rset.SetVarchar(ora.OraS)
sc.StmtCfg.Rset.SetLong(ora.OraS)
sc.StmtCfg.Rset.SetClob(ora.OraS)
sc.StmtCfg.Rset.SetBlob(ora.OraBin)
sc.StmtCfg.Rset.SetRaw(ora.OraBin)
sc.StmtCfg.Rset.SetLongRaw(ora.OraBin)
srv, err := env.OpenSrv(sc)
// any new SesCfg.StmtCfg, StmtCfg.Cfg will receive this StmtCfg
// any new Rset will receive the StmtCfg.Rset configuration

Another scenario may be to configure the runes mapped to bool values:

// update StmtCfg to change the FalseRune and TrueRune inserted into the database
// given: CREATE TABLE T1 (C1 CHAR(1 BYTE))

// insert 'false' record
var falseValue bool = false
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (:C1)")
stmt.Cfg().FalseRune = 'N'
stmt.Exe(falseValue)

// insert 'true' record
var trueValue bool = true
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (:C1)")
stmt.Cfg().TrueRune = 'Y'
stmt.Exe(trueValue)

// update RsetCfg to change the TrueRune
// used to translate an Oracle char to a Go bool
// fetch inserted records
stmt, err = ses.Prep("SELECT C1 FROM T1")
stmt.Cfg().Rset.TrueRune = 'Y'
rset, err := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}

Oracle-specific types offered by the ora package are ora.Rset, ora.IntervalYM, ora.IntervalDS, ora.Raw, ora.Lob and ora.Bfile. ora.Rset represents an Oracle SYS_REFCURSOR. IntervalYM represents an Oracle INTERVAL YEAR TO MONTH. ora.IntervalDS represents an Oracle INTERVAL DAY TO SECOND. ora.Raw represents an Oracle RAW or LONG RAW. ora.Lob may represent an Oracle BLOB or Oracle CLOB. And ora.Bfile represents an Oracle BFILE. ROWID columns are returned as strings and don't have a unique Go type.

Rset is used to obtain Go values from a SQL select statement. Methods Rset.Next, Rset.NextRow, and Rset.Len are available. Fields Rset.Row, Rset.Err, Rset.Index, and Rset.ColumnNames are also available. The Next method attempts to load data from an Oracle buffer into Row, returning true when successful. When no data is available, or if an error occurs, Next returns false setting Row to nil. Any error in Next is assigned to Err. Calling Next increments Index and method Len returns the total number of rows processed. The NextRow method is convenient for returning a single row. NextRow calls Next and returns Row. ColumnNames returns the names of columns defined by the SQL select statement.

Rset has two usages. Rset may be returned from Stmt.Qry when prepared with a SQL select statement:

// given: CREATE TABLE T1 (C1 NUMBER, C2, CHAR(1 BYTE), C3 VARCHAR2(48 CHAR))
stmt, err = ses.Prep("SELECT C1, C2, C3 FROM T1")
rst, err := stmt.Qry()
for rst.Next() {
	fmt.Println(rst.Index, rst.Row[0], rst.Row[1], rst.Row[2])
}

Or, *Rset may be passed to Stmt.Exe when prepared with a stored procedure accepting an OUT SYS_REFCURSOR parameter:

// given:
// CREATE TABLE T1 (C1 NUMBER, C2 VARCHAR2(48 CHAR))
// CREATE OR REPLACE PROCEDURE PROC1(P1 OUT SYS_REFCURSOR) AS
// BEGIN OPEN P1 FOR SELECT C1, C2 FROM T1 ORDER BY C1; END PROC1;
stmt, err = ses.Prep("CALL PROC1(:1)")
rst := &ora.Rset{}
stmt.Exe(rst)
if rst.IsOpen() {
	for rst.Next() {
		fmt.Println(rst.Row[0], rst.Row[1])
	}
}

Stored procedures with multiple OUT SYS_REFCURSOR parameters enable a single Exe call to obtain multiple Rsets:

// given:
// CREATE TABLE T1 (C1 NUMBER, C2 VARCHAR2(48 CHAR))
// CREATE OR REPLACE PROCEDURE PROC1(P1 OUT SYS_REFCURSOR, P2 OUT SYS_REFCURSOR) AS BEGIN
// OPEN P1 FOR SELECT C1 FROM T1 ORDER BY C1; OPEN P2 FOR SELECT C2 FROM T1 ORDER BY C2;
// END PROC1;
stmt, err = ses.Prep("CALL PROC1(:1, :2)")
rst1 := &ora.Rset{}
rst2 := &ora.Rset{}
stmt.Exe(rst1, rst2)
// read from first cursor
if rst1.IsOpen() {
	for rst1.Next() {
		fmt.Println(rst1.Row[0])
	}
}
// read from second cursor
if rst2.IsOpen() {
	for rst2.Next() {
		fmt.Println(rst2.Row[0])
	}
}

The types of values assigned to Row may be configured in StmtCfg.Rset. For configuration to take effect, assign StmtCfg.Rset prior to calling Stmt.Qry or Stmt.Exe.

Rset prefetching may be controlled by StmtCfg.PrefetchRowCount and StmtCfg.PrefetchMemorySize. PrefetchRowCount works in coordination with PrefetchMemorySize. When PrefetchRowCount is set to zero only PrefetchMemorySize is used; otherwise, the minimum of PrefetchRowCount and PrefetchMemorySize is used. The default uses a PrefetchMemorySize of 134MB.

Opening and closing Rsets is managed internally. Rset does not have an Open method or Close method.

IntervalYM may be be inserted and selected:

// insert IntervalYM slice
// given: create table t1 (c1 interval year to month)
a := make([]ora.IntervalYM, 5)
a[0] = ora.IntervalYM{Year: 1, Month: 1}
a[1] = ora.IntervalYM{Year: 99, Month: 9}
a[2] = ora.IntervalYM{IsNull: true}
a[3] = ora.IntervalYM{Year: -1, Month: -1}
a[4] = ora.IntervalYM{Year: -99, Month: -9}
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (:C1)")
stmt.Exe(a)

// query IntervalYM
stmt, err = ses.Prep("SELECT C1 FROM T1")
rst, err := stmt.Qry()
for rst.Next() {
	fmt.Println(rst.Row[0])
}

IntervalDS may be be inserted and selected:

// insert IntervalDS slice
// given: CREATE TABLE T1 (C1 INTERVAL DAY TO SECOND)
a := make([]ora.IntervalDS, 5)
a[0] = ora.IntervalDS{Day: 1, Hour: 1, Minute: 1, Second: 1, Nanosecond: 123456789}
a[1] = ora.IntervalDS{Day: 59, Hour: 59, Minute: 59, Second: 59, Nanosecond: 123456789}
a[2] = ora.IntervalDS{IsNull: true}
a[3] = ora.IntervalDS{Day: -1, Hour: -1, Minute: -1, Second: -1, Nanosecond: -123456789}
a[4] = ora.IntervalDS{Day: -59, Hour: -59, Minute: -59, Second: -59, Nanosecond: -123456789}
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (:C1)")
stmt.Exe(a)

// query IntervalDS
stmt, err = ses.Prep("SELECT C1 FROM T1")
rst, err := stmt.Qry()
for rst.Next() {
	fmt.Println(rst.Row[0])
}

Transactions on an Oracle server are supported. DML statements auto-commit unless a transaction has started:

// given: create table t1 (c1 number)

// rollback
tx, err := ses.BeginTransaction()
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (3)")
stmt.Exe()
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (5)")
stmt.Exe()
tx.Rollback()

// commit
tx, err = ses.BeginTransaction()
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (7)")
stmt.Exe()
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (9)")
stmt.Exe()
tx.Commit()

// query records
stmt, err = ses.Prep("SELECT C1 FROM T1")
rst, err := stmt.Qry()
for rst.Next() {
	fmt.Println(rst.Row[0])
}

Ses.PrepAndExe, Ses.PrepAndQry, Ses.Ins, Ses.Upd, and Ses.Sel are convenient one-line methods.

Ses.PrepAndExe offers a convenient one-line call to Ses.Prep and Stmt.Exe.

rowsAffected, err := ses.PrepAndExe("CREATE TABLE T1 (C1 NUMBER)")

Ses.PrepAndQry offers a convenient one-line call to Ses.Prep and Stmt.Qry.

rset, err := ses.PrepAndQry("SELECT CURRENT_TIMESTAMP FROM DUAL")

Ses.Ins composes, prepares and executes a sql INSERT statement. Ses.Ins is useful when you have to create and maintain a simple INSERT statement with a long list of columns. As table columns are added and dropped over the lifetime of a table Ses.Ins is easy to read and revise.

err = ses.Ins("T1",
  "C2", e.C2,
  "C3", e.C3,
  "C4", e.C4,
  "C5", e.C5,
  "C6", e.C6,
  "C7", e.C7,
  "C8", e.C8,
  "C9", e.C9,
  "C10", e.C10,
  "C11", e.C11,
  "C12", e.C12,
  "C13", e.C13,
  "C14", e.C14,
  "C15", e.C15,
  "C16", e.C16,
  "C17", e.C17,
  "C18", e.C18,
  "C19", e.C19,
  "C20", e.C20,
  "C21", e.C21,
  "C1", &e.C1)

Ses.Upd composes, prepares and executes a sql UPDATE statement. Ses.Upd is useful when you have to create and maintain a simple UPDATE statement with a long list of columns. As table columns are added and dropped over the lifetime of a table Ses.Upd is easy to read and revise.

err = ses.Upd("T1",
  "C2", e.C2*2,
  "C3", e.C3*2,
  "C4", e.C4*2,
  "C5", e.C5*2,
  "C6", e.C6*2,
  "C7", e.C7*2,
  "C8", e.C8*2,
  "C9", e.C9*2,
  "C10", e.C10*2,
  "C11", e.C11*2,
  "C12", e.C12*2,
  "C13", e.C13*2,
  "C14", e.C14*2,
  "C15", e.C15*2,
  "C16", e.C16*2,
  "C17", e.C17*2,
  "C18", e.C18*2,
  "C19", e.C19*2,
  "C20", e.C20*2,
  "C21", e.C21*2,
  "C1", e.C1)

Ses.Sel composes, prepares and queries a sql SELECT statement. Ses.Sel is useful when you have to create and maintain a simple SELECT statement with a long list of columns that have non-default GoColumnTypes. As table columns are added and dropped over the lifetime of a table Ses.Sel is easy to read and revise.

rset, err := ses.Sel("T1",
  "C1", ora.U64,
  "C2", ora.F64,
  "C3", ora.I8,
  "C4", ora.I16,
  "C5", ora.I32,
  "C6", ora.I64,
  "C7", ora.U8,
  "C8", ora.U16,
  "C9", ora.U32,
  "C10", ora.U64,
  "C11", ora.F32,
  "C12", ora.F64,
  "C13", ora.I8,
  "C14", ora.I16,
  "C15", ora.I32,
  "C16", ora.I64,
  "C17", ora.U8,
  "C18", ora.U16,
  "C19", ora.U32,
  "C20", ora.U64,
  "C21", ora.F32)

The Srv.Ping method checks whether the client's connection to an Oracle server is valid. A call to Ping requires an open Ses. Ping will return a nil error when the connection is fine:

// open a session before calling Ping
ses, _ := srv.OpenSes("username", "password")
err := srv.Ping()
if err == nil {
	fmt.Println("Ping successful")
}

The Srv.Version method is available to obtain the Oracle server version. A call to Version requires an open Ses:

// open a session before calling Version
ses, err := srv.OpenSes("username", "password")
version, err := srv.Version()
if version != "" && err == nil {
	fmt.Println("Received version from server")
}

Further code examples are available in the example file, test files and samples folder.

Logging

The ora package provides a simple ora.Logger interface for logging. Logging is disabled by default. Specify one of three optional built-in logging packages to enable logging; or, use your own logging package.

ora.Cfg().Log offers various options to enable or disable logging of specific ora driver methods. For example:

// enable logging of the Rset.Next method
ora.Cfg().Log.Rset.Next = true

To use the standard Go log package:

import (
  "github.com/rana/ora"
  "github.com/rana/ora/lg"
)

func main() {
  // use the optional log package for ora logging
  ora.Cfg().Log.Logger = lg.Log
}

which produces a sample log of:

ORA I 2015/05/23 16:54:44.615462 drv.go:411: OpenEnv 1
ORA I 2015/05/23 16:54:44.626443 drv.go:411: OpenEnv 2
ORA I 2015/05/23 16:54:44.627465 env.go:115: E2] OpenSrv (dbname orcl)
ORA I 2015/05/23 16:54:44.643449 env.go:150: E2] OpenSrv (srvId 1)
ORA I 2015/05/23 16:54:44.643449 srv.go:113: E2S1] OpenSes (username test)
ORA I 2015/05/23 16:54:44.665451 ses.go:163: E2S1S1] Prep: SELECT CURRENT_TIMESTAMP FROM DUAL
ORA I 2015/05/23 16:54:44.666451 rset.go:205: E2S1S1S1R0] open
ORA I 2015/05/23 16:54:44.666451 ses.go:74: E2S1S1] Close
ORA I 2015/05/23 16:54:44.666451 stmt.go:78: E2S1S1S1] Close
ORA I 2015/05/23 16:54:44.666451 rset.go:57: E2S1S1S1R0] close
ORA I 2015/05/23 16:54:44.666451 srv.go:63: E2S1] Close
ORA I 2015/05/23 16:54:44.667451 env.go:68: E2] Close

Messages are prefixed with 'ORA I' for information or 'ORA E' for an error. The log package is configured to write to os.Stderr by default. Use the ora/lg.Std type to configure an alternative io.Writer.

To use the glog package:

import (
	"flag"
	"github.com/rana/ora"
	"github.com/rana/ora/glg"
)

func main() {

	// parse flags for glog (required)
	// consider specifying cmd line arg -alsologtostderr=true
	flag.Parse()

	// use the glog package for ora logging
	ora.Cfg().Log.Logger = glg.Log
}

which produces a sample log of:

I0523 17:31:41.702365   97708 drv.go:411] OpenEnv 1
I0523 17:31:41.728377   97708 drv.go:411] OpenEnv 2
I0523 17:31:41.728377   97708 env.go:115] E2] OpenSrv (dbname orcl)
I0523 17:31:41.741390   97708 env.go:150] E2] OpenSrv (srvId 1)
I0523 17:31:41.741390   97708 srv.go:113] E2S1] OpenSes (username test)
I0523 17:31:41.762366   97708 ses.go:163] E2S1S1] Prep: SELECT CURRENT_TIMESTAMP FROM DUAL
I0523 17:31:41.762366   97708 rset.go:205] E2S1S1S1R0] open
I0523 17:31:41.762366   97708 ses.go:74] E2S1S1] Close
I0523 17:31:41.762366   97708 stmt.go:78] E2S1S1S1] Close
I0523 17:31:41.762366   97708 rset.go:57] E2S1S1S1R0] close
I0523 17:31:41.763365   97708 srv.go:63] E2S1] Close
I0523 17:31:41.763365   97708 env.go:68] E2] Close

To use the log15 package:

import (
	"github.com/rana/ora"
	"github.com/rana/ora/lg15"
)
func main() {
	// use the optional log15 package for ora logging
	ora.Cfg().Log.Logger = lg15.Log
}

which produces a sample log of:

t=2015-05-23T17:08:32-0700 lvl=info msg="OpenEnv 1" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="OpenEnv 2" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2] OpenSrv (dbname orcl)" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2] OpenSrv (srvId 1)" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1] OpenSes (username test)" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1S1] Prep: SELECT CURRENT_TIMESTAMP FROM DUAL" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1S1S1R0] open" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1S1] Close" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1S1S1] Close" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1S1S1R0] close" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1] Close" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2] Close" lib=ora
Test Database Setup

Tests are available and require some setup. Setup varies depending on whether the Oracle server is configured as a container database or non-container database. It's simpler to setup a non-container database. An example for each setup is explained.

Non-container test database setup steps:

-- 1. login to an Oracle server with SqlPlus as sysdba:
SQLPLUS / AS SYSDBA
-- 2. create a file for the test database use
CREATE TABLESPACE test_ts NOLOGGING DATAFILE 'test.dat' SIZE 100M AUTOEXTEND ON;
-- 3. create a test database
CREATE USER test IDENTIFIED BY test DEFAULT TABLESPACE test_ts;
-- 4. grant permissions to the database
GRANT CREATE SESSION, CREATE TABLE, CREATE SEQUENCE,
CREATE PROCEDURE, UNLIMITED TABLESPACE,
SELECT ANY DICTIONARY TO test;
-- 5. increase the number allowable open cursors
ALTER SYSTEM SET OPEN_CURSORS = 400 SCOPE=BOTH;
-- 6. create OS environment variables
-- specify your_database_name; varies based on installation; may be 'orcl'
GO_ORA_DRV_TEST_DB = your_database_name
GO_ORA_DRV_TEST_USERNAME = test
GO_ORA_DRV_TEST_PASSWORD = test

Container test database setup steps:

-- 1. login to an Oracle server with SqlPlus as sysdba:
SQLPLUS / AS SYSDBA
-- 2. create a test pluggable database and permissions
-- you will need to change the FILE_NAME_CONVERT file paths for your database installation
CREATE PLUGGABLE DATABASE go_driver_test
ADMIN USER test IDENTIFIED BY test
ROLES = (DBA)
FILE_NAME_CONVERT = ('d:\oracle\data\orcl\pdbseed\', 'd:\oracle\data\go_driver_test\');
-- 3. modify the pluggable database settings
ALTER PLUGGABLE DATABASE go_driver_test OPEN;
ALTER SESSION SET CONTAINER = go_driver_test;
GRANT DBA TO test;
-- 4. add new database service to the tnsnames.ora file:
-- located on your client machine in $ORACLE_HOME\network\admin\tnsnames.ora
GO_DRIVER_TEST =
  (DESCRIPTION =
	(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
	(CONNECT_DATA =
	  (SERVER = DEDICATED)
	  (SERVICE_NAME = go_driver_test)
	)
  )
-- 5. create OS environment variables
GO_ORA_DRIVER_TEST_DB = go_driver_test
GO_ORA_DRIVER_TEST_USERNAME = test
GO_ORA_DRIVER_TEST_PASSWORD = test

Some helpful SQL maintenance statements:

-- delete all tables in a non-container database
BEGIN
FOR c IN (SELECT table_name FROM user_tables) LOOP
EXECUTE IMMEDIATE ('DROP TABLE "' || c.table_name || '" CASCADE CONSTRAINTS');
END LOOP;
END;
-- delete the non-container test database; use SqlPlus as sysdba
DROP USER test CASCADE;

Run the tests.

Limitations

database/sql method Stmt.QueryRow is not supported.

License

Copyright 2014 Rana Ian. All rights reserved. Use of this source code is governed by The MIT License found in the accompanying LICENSE file.

Documentation

Overview

Package ora implements an Oracle database driver.

An Oracle database may be accessed through the database/sql package or through the ora package directly. database/sql offers connection pooling, thread safety, a consistent API to multiple database technologies and a common set of Go types. The ora package offers additional features including pointers, slices, nullable types, numerics of various sizes, Oracle-specific types, Go return type configuration, and Oracle abstractions such as environment, server and session.

The ora package is written with the Oracle Call Interface (OCI) C-language libraries provided by Oracle. The OCI libraries are a standard for client application communication and driver communication with Oracle databases.

The ora package has been verified to work with:

Oracle Standard 11g (11.2.0.4.0), Linux x86_64 (RHEL6)
Oracle Enterprise 12c (12.1.0.1.0), Windows 8.1 and AMD64.

Installation

Minimum requirements are Go 1.3 with CGO enabled, a GCC C compiler, and Oracle 11g (11.2.0.4.0) or Oracle Instant Client (11.2.0.4.0).

Install Oracle or Oracle Instant Client.

Set the CGO_CFLAGS and CGO_LDFLAGS environment variables to locate the OCI headers and library. For example:

// example OS environment variables for Oracle 12c on Windows
CGO_CFLAGS=-Ic:/oracle/home/OCI/include/
CGO_LDFLAGS=c:/oracle/home/BIN/oci.dll

CGO_CFLAGS identifies the location of the OCI header file. CGO_LDFLAGS identifies the location of the OCI library. These locations will vary based on whether an Oracle database is locally installed or whether the Oracle instant client libraries are locally installed.

The ora package has no external Go dependencies and is available on GitHub:

go get github.com/rana/ora

Data Types

The ora package supports all built-in Oracle data types. The supported Oracle built-in data types are NUMBER, BINARY_DOUBLE, BINARY_FLOAT, FLOAT, DATE, TIMESTAMP, TIMESTAMP WITH TIME ZONE, TIMESTAMP WITH LOCAL TIME ZONE, INTERVAL YEAR TO MONTH, INTERVAL DAY TO SECOND, CHAR, NCHAR, VARCHAR, VARCHAR2, NVARCHAR2, LONG, CLOB, NCLOB, BLOB, LONG RAW, RAW, ROWID and BFILE. SYS_REFCURSOR is also supported.

Oracle does not provide a built-in boolean type. Oracle provides a single-byte character type. A common practice is to define two single-byte characters which represent true and false. The ora package adopts this approach. The oracle package associates a Go bool value to a Go rune and sends and receives the rune to a CHAR(1 BYTE) column or CHAR(1 CHAR) column.

The default false rune is zero '0'. The default true rune is one '1'. The bool rune association may be configured or disabled when directly using the ora package but not with the database/sql package.

SQL Placeholder Syntax

Within a SQL string a placeholder may be specified to indicate where a Go variable is placed. The SQL placeholder is an Oracle identifier, from 1 to 30 characters, prefixed with a colon (:). For example:

// example Oracle placeholder uses a colon
INSERT INTO T1 (C1) VALUES (:C1)

Placeholders within a SQL statement are bound by position. The actual name is not used by the ora package driver e.g., placeholder names :c1, :1, or :xyz are treated equally.

Working With The Sql Package

You may access an Oracle database through the database/sql package. The database/sql package offers a consistent API across different databases, connection pooling, thread safety and a set of common Go types. database/sql makes working with Oracle straight-forward.

The ora package implements interfaces in the database/sql/driver package enabling database/sql to communicate with an Oracle database. Using database/sql ensures you never have to call the ora package directly.

When using database/sql, the mapping between Go types and Oracle types may be changed slightly. The database/sql package has strict expectations on Go return types. The Go-to-Oracle type mapping for database/sql is:

Go type		Oracle type

int64		NUMBER°, BINARY_DOUBLE, BINARY_FLOAT, FLOAT

float64		NUMBER¹, BINARY_DOUBLE, BINARY_FLOAT, FLOAT

time.Time	TIMESTAMP, TIMESTAMP WITH TIME ZONE, TIMESTAMP WITH LOCAL TIME ZONE, DATE

string		CHAR², NCHAR, VARCHAR, VARCHAR2, NVARCHAR2, LONG, CLOB, NCLOB

bool		CHAR(1 BYTE)³, CHAR(1 CHAR)³

[]byte		BLOB, LONG RAW, RAW

° A select-list column defined as an Oracle NUMBER with zero scale e.g.,
NUMBER(10,0) is returned as an int64. Either int64 or float64 may be inserted
into a NUMBER column with zero scale. float64 insertion will have its fractional
part truncated.

¹ A select-list column defined as an Oracle NUMBER with a scale greater than
zero e.g., NUMBER(10,4) is returned as a float64. Either int64 or float64 may
be inserted into a NUMBER column with a scale greater than zero.

² A select-list column defined as an Oracle CHAR with a length greater than 1
e.g., CHAR(2 BYTE) or CHAR(2 CHAR) is returned as a string. A Go string of any
length up to the column max length may be inserted into the CHAR column.

³ The Go bool value false is mapped to the zero rune '0'. The Go bool value
true is mapped to the one rune '1'.

To register the ora driver for use with sql.Open, you have to call ora.Register once before sql.Open in your app:

    func init() {
		ora.Register(nil)
	}

You may specify an optional *DrvCfg to ora.Register to configure various configuration options including statement configuration and Rset configuration.

    func init() {
		drvCfg := ora.NewDrvCfg()
		drvCfg.Env.StmtCfg.FalseRune = 'N'
		drvCfg.Env.StmtCfg.TrueRune = 'Y'
		drvCfg.Env.StmtCfg.Rset.TrueRune = 'Y'
		ora.Register(drvCfg)
	}

When configuring the driver for use with database/sql, keep in mind that database/sql has strict Go type-to-Oracle type mapping expectations.

Working With The Oracle Package Directly

The ora package allows programming with pointers, slices, nullable types, numerics of various sizes, Oracle-specific types, Go return type configuration, and Oracle abstractions such as environment, server and session. When working with the ora package directly, the API is slightly different than database/sql.

To register the ora driver for use with sql.Open, you have to call ora.Register, once before sql.Open in your app:

    func init() {
		ora.Register(nil)
	}

When using the ora package directly, the mapping between Go types and Oracle types may be changed. The Go-to-Oracle type mapping for the ora package is:

Go type				Oracle type

int64, int32, int16, int8	NUMBER°, BINARY_DOUBLE, BINARY_FLOAT, FLOAT
uint64, uint32, uint16, uint8
Int64, Int32, Int16, Int8
Uint64, Uint32, Uint16, Uint8
*int64, *int32, *int16, *int8
*uint64, *uint32, *uint16, *uint8
[]int64, []int32, []int16, []int8
[]uint64, []uint32, []uint16, []uint8
[]Int64, []Int32, []Int16, []Int8
[]Uint64, []Uint32, []Uint16, []Uint8

float64, float32		NUMBER¹, BINARY_DOUBLE, BINARY_FLOAT, FLOAT
Float64, Float32
*float64, *float32
[]float64, []float32
[]Float64, []Float32

time.Time			TIMESTAMP, TIMESTAMP WITH TIME ZONE,
Time				TIMESTAMP WITH LOCAL TIME ZONE, DATE
*time.Time
[]time.Time
[]Time

string				CHAR², NCHAR, VARCHAR, VARCHAR2,
String				NVARCHAR2, LONG, CLOB, NCLOB, ROWID
*string
[]string
[]String

bool				CHAR(1 BYTE)³, CHAR(1 CHAR)³
Bool
*bool
[]bool
[]Bool

[]byte				BLOB, LONG RAW, RAW
[][]byte
Binary
[]Binary

IntervalYM			INTERVAL MONTH TO YEAR
[]IntervalYM

IntervalDS			INTERVAL DAY TO SECOND
[]IntervalDS

Bfile				BFILE

° A select-list column defined as an Oracle NUMBER with zero scale e.g.,
NUMBER(10,0) is returned as an int64 by default. Integer and floating point
numerics may be inserted into a NUMBER column with zero scale. Inserting a
floating point numeric will have its fractional part truncated.

¹ A select-list column defined as an Oracle NUMBER with a scale greater than
zero e.g., NUMBER(10,4) is returned as a float64 by default. Integer and
floating point numerics may be inserted into a NUMBER column with a scale
greater than zero.

² A select-list column defined as an Oracle CHAR with a length greater than 1
e.g., CHAR(2 BYTE) or CHAR(2 CHAR) is returned as a string. A Go string of any
length up to the column max length may be inserted into the CHAR column.

³ The Go bool value false is mapped to the zero rune '0'. The Go bool value
true is mapped to the one rune '1'.

An example of using the ora package directly:

package main

import (
	"fmt"
	"github.com/rana/ora"
)

func main() {
	// example usage of the ora package driver
	// connect to a server and open a session
	env, err := ora.OpenEnv(nil)
	defer env.Close()
	if err != nil {
		panic(err)
	}
	srvCfg := ora.NewSrvCfg()
	srvCfg.Dblink = "orcl"
	srv, err := env.OpenSrv(srvCfg)
	defer srv.Close()
	if err != nil {
		panic(err)
	}
	sesCfg := ora.NewSesCfg()
	sesCfg.Username = "test"
	sesCfg.Password = "test"
	ses, err := srv.OpenSes(sesCfg)
	defer ses.Close()
	if err != nil {
		panic(err)
	}

	// create table
	tableName := "t1"
	stmtTbl, err := ses.Prep(fmt.Sprintf("CREATE TABLE %v "+
		"(C1 NUMBER(19,0) GENERATED ALWAYS AS IDENTITY "+
		"(START WITH 1 INCREMENT BY 1), C2 VARCHAR2(48 CHAR))", tableName))
	defer stmtTbl.Close()
	if err != nil {
		panic(err)
	}
	rowsAffected, err := stmtTbl.Exe()
	if err != nil {
		panic(err)
	}
	fmt.Println(rowsAffected)

	// begin first transaction
	tx1, err := ses.StartTx()
	if err != nil {
		panic(err)
	}

	// insert record
	var id uint64
	str := "Go is expressive, concise, clean, and efficient."
	stmtIns, err := ses.Prep(fmt.Sprintf(
		"INSERT INTO %v (C2) VALUES (:C2) RETURNING C1 INTO :C1", tableName))
	defer stmtIns.Close()
	rowsAffected, err = stmtIns.Exe(str, &id)
	if err != nil {
		panic(err)
	}
	fmt.Println(rowsAffected)

	// insert nullable String slice
	a := make([]ora.String, 4)
	a[0] = ora.String{Value: "Its concurrency mechanisms make it easy to"}
	a[1] = ora.String{IsNull: true}
	a[2] = ora.String{Value: "It's a fast, statically typed, compiled"}
	a[3] = ora.String{Value: "One of Go's key design goals is code"}
	stmtSliceIns, err := ses.Prep(fmt.Sprintf(
		"INSERT INTO %v (C2) VALUES (:C2)", tableName))
	defer stmtSliceIns.Close()
	if err != nil {
		panic(err)
	}
	rowsAffected, err = stmtSliceIns.Exe(a)
	if err != nil {
		panic(err)
	}
	fmt.Println(rowsAffected)

	// fetch records
	stmtQry, err := ses.Prep(fmt.Sprintf(
		"SELECT C1, C2 FROM %v", tableName))
	defer stmtQry.Close()
	if err != nil {
		panic(err)
	}
	rset, err := stmtQry.Qry()
	if err != nil {
		panic(err)
	}
	for rset.Next() {
		fmt.Println(rset.Row[0], rset.Row[1])
	}
	if rset.Err != nil {
		panic(rset.Err)
	}

	// commit first transaction
	err = tx1.Commit()
	if err != nil {
		panic(err)
	}

	// begin second transaction
	tx2, err := ses.StartTx()
	if err != nil {
		panic(err)
	}
	// insert null String
	nullableStr := ora.String{IsNull: true}
	stmtTrans, err := ses.Prep(fmt.Sprintf(
		"INSERT INTO %v (C2) VALUES (:C2)", tableName))
	defer stmtTrans.Close()
	if err != nil {
		panic(err)
	}
	rowsAffected, err = stmtTrans.Exe(nullableStr)
	if err != nil {
		panic(err)
	}
	fmt.Println(rowsAffected)
	// rollback second transaction
	err = tx2.Rollback()
	if err != nil {
		panic(err)
	}

	// fetch and specify return type
	stmtCount, err := ses.Prep(fmt.Sprintf(
		"SELECT COUNT(C1) FROM %v WHERE C2 IS NULL", tableName), ora.U8)
	defer stmtCount.Close()
	if err != nil {
		panic(err)
	}
	rset, err = stmtCount.Qry()
	if err != nil {
		panic(err)
	}
	row := rset.NextRow()
	if row != nil {
		fmt.Println(row[0])
	}
	if rset.Err != nil {
		panic(rset.Err)
	}

	// create stored procedure with sys_refcursor
	stmtProcCreate, err := ses.Prep(fmt.Sprintf(
		"CREATE OR REPLACE PROCEDURE PROC1(P1 OUT SYS_REFCURSOR) AS BEGIN "+
			"OPEN P1 FOR SELECT C1, C2 FROM %v WHERE C1 > 2 ORDER BY C1; "+
			"END PROC1;",
		tableName))
	defer stmtProcCreate.Close()
	rowsAffected, err = stmtProcCreate.Exe()
	if err != nil {
		panic(err)
	}

	// call stored procedure
	// pass *Rset to Exe to receive the results of a sys_refcursor
	stmtProcCall, err := ses.Prep("CALL PROC1(:1)")
	defer stmtProcCall.Close()
	if err != nil {
		panic(err)
	}
	procRset := &ora.Rset{}
	rowsAffected, err = stmtProcCall.Exe(procRset)
	if err != nil {
		panic(err)
	}
	if procRset.IsOpen() {
		for procRset.Next() {
			fmt.Println(procRset.Row[0], procRset.Row[1])
		}
		if procRset.Err != nil {
			panic(procRset.Err)
		}
		fmt.Println(procRset.Len())
	}

	// Output:
	// 0
	// 1
	// 4
	// 1 Go is expressive, concise, clean, and efficient.
	// 2 Its concurrency mechanisms make it easy to
	// 3
	// 4 It's a fast, statically typed, compiled
	// 5 One of Go's key design goals is code
	// 1
	// 1
	// 3
	// 4 It's a fast, statically typed, compiled
	// 5 One of Go's key design goals is code
	// 3
}

Pointers may be used to capture out-bound values from a SQL statement such as an insert or stored procedure call. For example, a numeric pointer captures an identity value:

// given:
// CREATE TABLE T1 (
// C1 NUMBER(19,0) GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1),
// C2 VARCHAR2(48 CHAR))
var id int64
stmt, err = ses.Prep("INSERT INTO T1 (C2) VALUES ('GO') RETURNING C1 INTO :C1")
stmt.Exe(&id)

A string pointer captures an out parameter from a stored procedure:

// given:
// CREATE OR REPLACE PROCEDURE PROC1 (P1 OUT VARCHAR2) AS BEGIN P1 := 'GO'; END PROC1;
var str string
stmt, err = ses.Prep("CALL PROC1(:1)")
stmt.Exe(&str)

Slices may be used to insert multiple records with a single insert statement:

// insert one million rows with single insert statement
// given: CREATE TABLE T1 (C1 NUMBER)
values := make([]int64, 1000000)
for n, _ := range values {
	values[n] = int64(n)
}
rowsAffected, err := ses.PrepAndExe("INSERT INTO T1 (C1) VALUES (:C1)", values)

The ora package provides nullable Go types to support DML operations such as insert and select. The nullable Go types provided by the ora package are Int64, Int32, Int16, Int8, Uint64, Uint32, Uint16, Uint8, Float64, Float32, Time, IntervalYM, IntervalDS, String, Bool, Binary and Bfile. For example, you may insert nullable Strings and select nullable Strings:

// insert String slice
// given: CREATE TABLE T1 (C1 VARCHAR2(48 CHAR))
a := make([]ora.String, 5)
a[0] = ora.String{Value: "Go is expressive, concise, clean, and efficient."}
a[1] = ora.String{Value: "Its concurrency mechanisms make it easy to"}
a[2] = ora.String{IsNull: true}
a[3] = ora.String{Value: "It's a fast, statically typed, compiled"}
a[4] = ora.String{Value: "One of Go's key design goals is code"}
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (:C1)")
stmt.Exe(a)

// Specify OraS to Prep method to return ora.String values
// fetch records
stmt, err = ses.Prep("SELECT C1 FROM T1", OraS)
rset, err := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}

The Stmt.Prep method is variadic accepting zero or more GoColumnType which define a Go return type for a select-list column. For example, a Prep call can be configured to return an int64 and a nullable Int64 from the same column:

// given: create table t1 (c1 number)
stmt, err = ses.Prep("SELECT C1, C1 FROM T1", ora.I64, ora.OraI64)
rset, err := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0], rset.Row[1])
}

Go numerics of various sizes are supported in DML operations. The ora package supports int64, int32, int16, int8, uint64, uint32, uint16, uint8, float64 and float32. For example, you may insert a uint16 and select numerics of various sizes:

// insert uint16
// given: create table t1 (c1 number)
value := uint16(9)
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (:C1)")
stmt.Exe(value)

// select numerics of various sizes from the same column
stmt, err = ses.Prep(
	"SELECT C1, C1, C1, C1, C1, C1, C1, C1, C1, C1, FROM T1",
	ora.I64, ora.I32, ora.I16, ora.I8, ora.U64, ora.U32, ora.U16, ora.U8,
	ora.F64, ora.F32)
rset, err := stmt.Qry()
row := rset.NextRow()

If a non-nullable type is defined for a nullable column returning null, the Go type's zero value is returned.

GoColumnTypes defined by the ora package are:

Go type		GoColumnType

int64		I64

int32		I32

int16		I16

int8		I8

uint64		U64

uint32		U32

uint16		U16

uint8		U8

float64		F64

Int64		OraI64

Int32		OraI32

Int16		OraI16

Int8		OraI8

Uint64		OraU64

Uint32		OraU32

Uint16		OraU16

Uint8		OraU8

Float64		OraF64

Float32		OraF32

time.Time	T

Time		OraT

string		S

String		OraS

bool		B

Bool		OraB

[]byte		Bin

Raw			Bin

Lob°		Bin or S

default¹	D

° Lob will return binary data if the Oracle column is a BLOB; otherwise, Lob
  will return astring if the Oracle column is a CLOB.

¹ D represents a default mapping between a select-list column and a Go type.
The default mapping is defined in RsetCfg.

When Stmt.Prep doesn't receive a GoColumnType, or receives an incorrect GoColumnType, the default value defined in RsetCfg is used.

EnvCfg, SrvCfg, SesCfg, StmtCfg and RsetCfg are the main configuration structs. EnvCfg configures aspects of an Env. SrvCfg configures aspects of a Srv. SesCfg configures aspects of a Ses. StmtCfg configures aspects of a Stmt. RsetCfg configures aspects of Rset. StmtCfg and RsetCfg have the most options to configure. RsetCfg defines the default mapping between an Oracle select-list column and a Go type. StmtCfg may be set in an EnvCfg, SrvCfg, SesCfg and StmtCfg. RsetCfg may be set in a Stmt.

EnvCfg.StmtCfg, SrvCfg.StmtCfg, SesCfg.StmtCfg may optionally be specified to configure a statement. If StmtCfg isn't specified default values are applied. EnvCfg.StmtCfg, SrvCfg.StmtCfg, SesCfg.StmtCfg cascade to new descendent structs. When ora.OpenEnv() is called a specified EnvCfg is used or a default EnvCfg is created. Creating a Srv with env.OpenSrv() will use SrvCfg.StmtCfg if it is specified; otherwise, EnvCfg.StmtCfg is copied by value to SrvCfg.StmtCfg. Creating a Ses with srv.OpenSes() will use SesCfg.StmtCfg if it is specified; otherwise, SrvCfg.StmtCfg is copied by value to SesCfg.StmtCfg. Creating a Stmt with ses.Prep() will use SesCfg.StmtCfg if it is specified; otherwise, a new StmtCfg with default values is set on the Stmt. Call Stmt.Cfg() to change a Stmt's configuration.

An Env may contain multiple Srv. A Srv may contain multiple Ses. A Ses may contain multiple Stmt. A Stmt may contain multiple Rset.

// StmtCfg cascades to descendent structs
// EnvCfg -> SrvCfg -> SesCfg -> StmtCfg -> RsetCfg

Setting a RsetCfg on a StmtCfg does not cascade through descendent structs. Configuration of Stmt.Cfg takes effect prior to calls to Stmt.Exe and Stmt.Qry; consequently, any updates to Stmt.Cfg after a call to Stmt.Exe or Stmt.Qry are not observed.

One configuration scenario may be to set a server's select statements to return nullable Go types by default:

sc := ora.NewSrvCfg()
sc.Dblink = "orcl"
sc.StmtCfg.Rset.SetNumberInt(ora.OraI64)
sc.StmtCfg.Rset.SetNumberFloat(ora.OraF64)
sc.StmtCfg.Rset.SetBinaryDouble(ora.OraF64)
sc.StmtCfg.Rset.SetBinaryFloat(ora.OraF64)
sc.StmtCfg.Rset.SetFloat(ora.OraF64)
sc.StmtCfg.Rset.SetDate(ora.OraT)
sc.StmtCfg.Rset.SetTimestamp(ora.OraT)
sc.StmtCfg.Rset.SetTimestampTz(ora.OraT)
sc.StmtCfg.Rset.SetTimestampLtz(ora.OraT)
sc.StmtCfg.Rset.SetChar1(ora.OraB)
sc.StmtCfg.Rset.SetVarchar(ora.OraS)
sc.StmtCfg.Rset.SetLong(ora.OraS)
sc.StmtCfg.Rset.SetClob(ora.OraS)
sc.StmtCfg.Rset.SetBlob(ora.OraBin)
sc.StmtCfg.Rset.SetRaw(ora.OraBin)
sc.StmtCfg.Rset.SetLongRaw(ora.OraBin)
srv, err := env.OpenSrv(sc)
// any new SesCfg.StmtCfg, StmtCfg.Cfg will receive this StmtCfg
// any new Rset will receive the StmtCfg.Rset configuration

Another scenario may be to configure the runes mapped to bool values:

// update StmtCfg to change the FalseRune and TrueRune inserted into the database
// given: CREATE TABLE T1 (C1 CHAR(1 BYTE))

// insert 'false' record
var falseValue bool = false
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (:C1)")
stmt.Cfg().FalseRune = 'N'
stmt.Exe(falseValue)

// insert 'true' record
var trueValue bool = true
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (:C1)")
stmt.Cfg().TrueRune = 'Y'
stmt.Exe(trueValue)

// update RsetCfg to change the TrueRune
// used to translate an Oracle char to a Go bool
// fetch inserted records
stmt, err = ses.Prep("SELECT C1 FROM T1")
stmt.Cfg().Rset.TrueRune = 'Y'
rset, err := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}

Oracle-specific types offered by the ora package are ora.Rset, ora.IntervalYM, ora.IntervalDS, ora.Raw, ora.Lob and ora.Bfile. ora.Rset represents an Oracle SYS_REFCURSOR. ora.IntervalYM represents an Oracle INTERVAL YEAR TO MONTH. ora.IntervalDS represents an Oracle INTERVAL DAY TO SECOND. ora.Raw represents an Oracle RAW or LONG RAW. ora.Lob may represent an Oracle BLOB or Oracle CLOB. And ora.Bfile represents an Oracle BFILE. ROWID columns are returned as strings and don't have a unique Go type.

Rset is used to obtain Go values from a SQL select statement. Methods Rset.Next, Rset.NextRow, and Rset.Len are available. Fields Rset.Row, Rset.Err, Rset.Index, and Rset.ColumnNames are also available. The Next method attempts to load data from an Oracle buffer into Row, returning true when successful. When no data is available, or if an error occurs, Next returns false setting Row to nil. Any error in Next is assigned to Err. Calling Next increments Index and method Len returns the total number of rows processed. The NextRow method is convenient for returning a single row. NextRow calls Next and returns Row. ColumnNames returns the names of columns defined by the SQL select statement.

Rset has two usages. Rset may be returned from Stmt.Qry when prepared with a SQL select statement:

// given: CREATE TABLE T1 (C1 NUMBER, C2, CHAR(1 BYTE), C3 VARCHAR2(48 CHAR))
stmt, err = ses.Prep("SELECT C1, C2, C3 FROM T1")
rset, err := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Index, rset.Row[0], rset.Row[1], rset.Row[2])
}

Or, *Rset may be passed to Stmt.Exe when prepared with a stored procedure accepting an OUT SYS_REFCURSOR parameter:

// given:
// CREATE TABLE T1 (C1 NUMBER, C2 VARCHAR2(48 CHAR))
// CREATE OR REPLACE PROCEDURE PROC1(P1 OUT SYS_REFCURSOR) AS
// BEGIN OPEN P1 FOR SELECT C1, C2 FROM T1 ORDER BY C1; END PROC1;
stmt, err = ses.Prep("CALL PROC1(:1)")
rset := &ora.Rset{}
stmt.Exe(rset)
if rset.IsOpen() {
	for rset.Next() {
		fmt.Println(rset.Row[0], rset.Row[1])
	}
}

Stored procedures with multiple OUT SYS_REFCURSOR parameters enable a single Exe call to obtain multiple Rsets:

// given:
// CREATE TABLE T1 (C1 NUMBER, C2 VARCHAR2(48 CHAR))
// CREATE OR REPLACE PROCEDURE PROC1(P1 OUT SYS_REFCURSOR, P2 OUT SYS_REFCURSOR) AS
// BEGIN OPEN P1 FOR SELECT C1 FROM T1 ORDER BY C1; OPEN P2 FOR SELECT C2 FROM T1 ORDER BY C2;
// END PROC1;
stmt, err = ses.Prep("CALL PROC1(:1, :2)")
rset1 := &ora.Rset{}
rset2 := &ora.Rset{}
stmt.Exe(rset1, rset2)
// read from first cursor
if rset1.IsOpen() {
	for rset1.Next() {
		fmt.Println(rset1.Row[0])
	}
}
// read from second cursor
if rset2.IsOpen() {
	for rset2.Next() {
		fmt.Println(rset2.Row[0])
	}
}

The types of values assigned to Row may be configured in StmtCfg.Rset. For configuration to take effect, assign StmtCfg.Rset prior to calling Stmt.Qry or Stmt.Exe.

Rset prefetching may be controlled by StmtCfg.PrefetchRowCount and StmtCfg.PrefetchMemorySize. PrefetchRowCount works in coordination with PrefetchMemorySize. When PrefetchRowCount is set to zero only PrefetchMemorySize is used; otherwise, the minimum of PrefetchRowCount and PrefetchMemorySize is used. The default uses a PrefetchMemorySize of 134MB.

Opening and closing Rsets is managed internally. Rset does not have an Open method or Close method.

IntervalYM may be be inserted and selected:

// insert IntervalYM slice
// given: CREATE TABLE T1 (C1 INTERVAL YEAR TO MONTH)
a := make([]ora.IntervalYM, 5)
a[0] = ora.IntervalYM{Year: 1, Month: 1}
a[1] = ora.IntervalYM{Year: 99, Month: 9}
a[2] = ora.IntervalYM{IsNull: true}
a[3] = ora.IntervalYM{Year: -1, Month: -1}
a[4] = ora.IntervalYM{Year: -99, Month: -9}
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (:C1)")
stmt.Exe(a)

// query IntervalYM
stmt, err = ses.Prep("SELECT C1 FROM T1")
rset, err := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}

IntervalDS may be be inserted and selected:

// insert IntervalDS slice
// given: CREATE TABLE T1 (C1 INTERVAL DAY TO SECOND)
a := make([]ora.IntervalDS, 5)
a[0] = ora.IntervalDS{Day: 1, Hour: 1, Minute: 1, Second: 1, Nanosecond: 123456789}
a[1] = ora.IntervalDS{Day: 59, Hour: 59, Minute: 59, Second: 59, Nanosecond: 123456789}
a[2] = ora.IntervalDS{IsNull: true}
a[3] = ora.IntervalDS{Day: -1, Hour: -1, Minute: -1, Second: -1, Nanosecond: -123456789}
a[4] = ora.IntervalDS{Day: -59, Hour: -59, Minute: -59, Second: -59, Nanosecond: -123456789}
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (:C1)")
stmt.Exe(a)

// query IntervalDS
stmt, err = ses.Prep("SELECT C1 FROM T1")
rset, err := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}

Transactions on an Oracle server are supported. DML statements auto-commit unless a transaction has started:

// given: CREATE TABLE T1 (C1 NUMBER)

// rollback
tx, err := ses.StartTx()
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (3)")
stmt.Exe()
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (5)")
stmt.Exe()
tx.Rollback()

// commit
tx, err = ses.StartTx()
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (7)")
stmt.Exe()
stmt, err = ses.Prep("INSERT INTO T1 (C1) VALUES (9)")
stmt.Exe()
tx.Commit()

// fetch records
stmt, err = ses.Prep("SELECT C1 FROM T1")
rset, err := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}

Ses.PrepAndExe, Ses.PrepAndQry, Ses.Ins, Ses.Upd, and Ses.Sel are convenient one-line methods.

Ses.PrepAndExe offers a convenient one-line call to Ses.Prep and Stmt.Exe.

rowsAffected, err := ses.PrepAndExe("CREATE TABLE T1 (C1 NUMBER)")

Ses.PrepAndQry offers a convenient one-line call to Ses.Prep and Stmt.Qry.

rset, err := ses.PrepAndQry("SELECT CURRENT_TIMESTAMP FROM DUAL")

Ses.Ins composes, prepares and executes a sql INSERT statement. Ses.Ins is useful when you have to create and maintain a simple INSERT statement with a long list of columns. As table columns are added and dropped over the lifetime of a table Ses.Ins is easy to read and revise.

err = ses.Ins("T1",
	"C2", e.C2,
	"C3", e.C3,
	"C4", e.C4,
	"C5", e.C5,
	"C6", e.C6,
	"C7", e.C7,
	"C8", e.C8,
	"C9", e.C9,
	"C10", e.C10,
	"C11", e.C11,
	"C12", e.C12,
	"C13", e.C13,
	"C14", e.C14,
	"C15", e.C15,
	"C16", e.C16,
	"C17", e.C17,
	"C18", e.C18,
	"C19", e.C19,
	"C20", e.C20,
	"C21", e.C21,
	"C1", &e.C1)

Ses.Upd composes, prepares and executes a sql UPDATE statement. Ses.Upd is useful when you have to create and maintain a simple UPDATE statement with a long list of columns. As table columns are added and dropped over the lifetime of a table Ses.Upd is easy to read and revise.

err = ses.Upd("T1",
	"C2", e.C2*2,
	"C3", e.C3*2,
	"C4", e.C4*2,
	"C5", e.C5*2,
	"C6", e.C6*2,
	"C7", e.C7*2,
	"C8", e.C8*2,
	"C9", e.C9*2,
	"C10", e.C10*2,
	"C11", e.C11*2,
	"C12", e.C12*2,
	"C13", e.C13*2,
	"C14", e.C14*2,
	"C15", e.C15*2,
	"C16", e.C16*2,
	"C17", e.C17*2,
	"C18", e.C18*2,
	"C19", e.C19*2,
	"C20", e.C20*2,
	"C21", e.C21*2,
	"C1", e.C1)

Ses.Sel composes, prepares and queries a sql SELECT statement. Ses.Sel is useful when you have to create and maintain a simple SELECT statement with a long list of columns that have non-default GoColumnTypes. As table columns are added and dropped over the lifetime of a table Ses.Sel is easy to read and revise.

rset, err := ses.Sel("T1",
	"C1", ora.U64,
	"C2", ora.F64,
	"C3", ora.I8,
	"C4", ora.I16,
	"C5", ora.I32,
	"C6", ora.I64,
	"C7", ora.U8,
	"C8", ora.U16,
	"C9", ora.U32,
	"C10", ora.U64,
	"C11", ora.F32,
	"C12", ora.F64,
	"C13", ora.I8,
	"C14", ora.I16,
	"C15", ora.I32,
	"C16", ora.I64,
	"C17", ora.U8,
	"C18", ora.U16,
	"C19", ora.U32,
	"C20", ora.U64,
	"C21", ora.F32)

The Srv.Ping method checks whether the client's connection to an Oracle server is valid. A call to Ping requires an open Ses. Ping will return a nil error when the connection is fine:

// open a session before calling Ping
ses, _ := srv.OpenSes("username", "password")
err := srv.Ping()
if err == nil {
	fmt.Println("Ping successful")
}

The Srv.Version method is available to obtain the Oracle server version. A call to Version requires an open Ses:

// open a session before calling Version
ses, err := srv.OpenSes("username", "password")
version, err := srv.Version()
if version != "" && err == nil {
	fmt.Println("Received version from server")
}

Further code examples are available in the example file, test files and samples folder.

Logging

The ora package provides a simple ora.Logger interface for logging. Logging is disabled by default. Specify one of three optional built-in logging packages to enable logging; or, use your own logging package.

ora.Cfg().Log offers various options to enable or disable logging of specific ora driver methods. For example:

// enable logging of the Rset.Next method
ora.Cfg().Log.Rset.Next = true

To use the standard Go log package:

import (
	"github.com/rana/ora"
	"github.com/rana/ora/lg"
)

func main() {
	// use an optional log package for ora logging
	ora.Cfg().Log.Logger = lg.Log
}

which produces a sample log of:

ORA I 2015/05/23 16:54:44.615462 drv.go:411: OpenEnv 1
ORA I 2015/05/23 16:54:44.626443 drv.go:411: OpenEnv 2
ORA I 2015/05/23 16:54:44.627465 env.go:115: E2] OpenSrv (dbname orcl)
ORA I 2015/05/23 16:54:44.643449 env.go:150: E2] OpenSrv (srvId 1)
ORA I 2015/05/23 16:54:44.643449 srv.go:113: E2S1] OpenSes (username test)
ORA I 2015/05/23 16:54:44.665451 ses.go:163: E2S1S1] Prep: SELECT CURRENT_TIMESTAMP FROM DUAL
ORA I 2015/05/23 16:54:44.666451 rset.go:205: E2S1S1S1R0] open
ORA I 2015/05/23 16:54:44.666451 ses.go:74: E2S1S1] Close
ORA I 2015/05/23 16:54:44.666451 stmt.go:78: E2S1S1S1] Close
ORA I 2015/05/23 16:54:44.666451 rset.go:57: E2S1S1S1R0] close
ORA I 2015/05/23 16:54:44.666451 srv.go:63: E2S1] Close
ORA I 2015/05/23 16:54:44.667451 env.go:68: E2] Close

Messages are prefixed with 'ORA I' for information or 'ORA E' for an error. The log package is configured to write to os.Stderr by default. Use the ora/lg.Std type to configure an alternative io.Writer.

To use the glog package:

import (
	"flag"
	"github.com/rana/ora"
	"github.com/rana/ora/glg"
)

func main() {

	// parse flags for glog (required)
	// consider specifying cmd line arg -alsologtostderr=true
	flag.Parse()

	// use the optional glog package for ora logging
	ora.Cfg().Log.Logger = glg.Log
}

which produces a sample log of:

I0523 17:31:41.702365   97708 drv.go:411] OpenEnv 1
I0523 17:31:41.728377   97708 drv.go:411] OpenEnv 2
I0523 17:31:41.728377   97708 env.go:115] E2] OpenSrv (dbname orcl)
I0523 17:31:41.741390   97708 env.go:150] E2] OpenSrv (srvId 1)
I0523 17:31:41.741390   97708 srv.go:113] E2S1] OpenSes (username test)
I0523 17:31:41.762366   97708 ses.go:163] E2S1S1] Prep: SELECT CURRENT_TIMESTAMP FROM DUAL
I0523 17:31:41.762366   97708 rset.go:205] E2S1S1S1R0] open
I0523 17:31:41.762366   97708 ses.go:74] E2S1S1] Close
I0523 17:31:41.762366   97708 stmt.go:78] E2S1S1S1] Close
I0523 17:31:41.762366   97708 rset.go:57] E2S1S1S1R0] close
I0523 17:31:41.763365   97708 srv.go:63] E2S1] Close
I0523 17:31:41.763365   97708 env.go:68] E2] Close

To use the log15 package:

import (
	"github.com/rana/ora"
	"github.com/rana/ora/lg15"
)
func main() {
	// use the optional log15 package for ora logging
	ora.Cfg().Log.Logger = lg15.Log
}

which produces a sample log of:

t=2015-05-23T17:08:32-0700 lvl=info msg="OpenEnv 1" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="OpenEnv 2" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2] OpenSrv (dbname orcl)" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2] OpenSrv (srvId 1)" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1] OpenSes (username test)" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1S1] Prep: SELECT CURRENT_TIMESTAMP FROM DUAL" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1S1S1R0] open" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1S1] Close" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1S1S1] Close" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1S1S1R0] close" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2S1] Close" lib=ora
t=2015-05-23T17:08:32-0700 lvl=info msg="E2] Close" lib=ora

See https://github.com/rana/ora/tree/master/samples/lg15/main.go for sample code which uses the log15 package.

Test Database Setup

Tests are available and require some setup. Setup varies depending on whether the Oracle server is configured as a container database or non-container database. It's simpler to setup a non-container database. An example for each setup is explained.

Non-container test database setup steps:

// 1. login to an Oracle server with SqlPlus as sysdba:
SQLPLUS / AS SYSDBA

// 2. create a file for the test database use
CREATE TABLESPACE test_ts NOLOGGING DATAFILE 'test.dat' SIZE 100M AUTOEXTEND ON;

// 3. create a test database
CREATE USER test IDENTIFIED BY test DEFAULT TABLESPACE test_ts;

// 4. grant permissions to the database
GRANT CREATE SESSION, CREATE TABLE, CREATE SEQUENCE,
CREATE PROCEDURE, UNLIMITED TABLESPACE TO test;

// 5. increase the number allowable open cursors
ALTER SYSTEM SET OPEN_CURSORS = 400 SCOPE=BOTH;

// 6. create OS environment variables
// specify your_database_name; varies based on installation; may be 'orcl'
GO_ORA_DRV_TEST_DB = your_database_name
GO_ORA_DRV_TEST_USERNAME = test
GO_ORA_DRV_TEST_PASSWORD = test

Container test database setup steps:

// 1. login to an Oracle server with SqlPlus as sysdba:
SQLPLUS / AS SYSDBA

// 2. create a test pluggable database and permissions
// you will need to change the FILE_NAME_CONVERT file paths for your database installation
CREATE PLUGGABLE DATABASE go_driver_test
ADMIN USER test IDENTIFIED BY test
ROLES = (DBA)
FILE_NAME_CONVERT = ('d:\oracle\data\orcl\pdbseed\', 'd:\oracle\data\go_driver_test\');

// 3. modify the pluggable database settings
ALTER PLUGGABLE DATABASE go_driver_test OPEN;
ALTER SESSION SET CONTAINER = go_driver_test;
GRANT DBA TO test;

// 4. add new database service to the tnsnames.ora file:
// located on your client machine in $ORACLE_HOME\network\admin\tnsnames.ora
GO_DRIVER_TEST =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = go_driver_test)
    )
  )

// 5. create OS environment variables
GO_ORA_DRIVER_TEST_DB = go_driver_test
GO_ORA_DRIVER_TEST_USERNAME = test
GO_ORA_DRIVER_TEST_PASSWORD = test

Some helpful SQL maintenance statements:

// delete all tables in a non-container database
BEGIN
FOR c IN (SELECT table_name FROM user_tables) LOOP
EXECUTE IMMEDIATE ('DROP TABLE "' || c.table_name || '" CASCADE CONSTRAINTS');
END LOOP;
END;

// delete the non-container test database; use SqlPlus as sysdba
DROP USER test CASCADE;

Run the tests.

Limitations

database/sql method Stmt.QueryRow is not supported.

License

Copyright 2014 Rana Ian. All rights reserved. Use of this source code is governed by The MIT License found in the accompanying LICENSE file.

Example
// example usage of the ora package driver
// connect to a server and open a session
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, err := env.OpenSrv(testSrvCfg)
defer srv.Close()
if err != nil {
	panic(err)
}
ses, err := srv.OpenSes(testSesCfg)
if err != nil {
	panic(err)
}
defer ses.Close()

// create table
tableName := "t1"
ses.PrepAndExe("DROP TABLE " + tableName)
qry := "CREATE TABLE " + tableName + "(C1 NUMBER(19,0)"
ver, _ := srv.Version()
var autoC1 int
if strings.Contains(ver, " 12.") {
	qry += " GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1)"
} else {
	autoC1 = 1
}
qry += ", C2 VARCHAR2(48 CHAR))"
stmtTbl, err := ses.Prep(qry)
if err != nil {
	panic(err)
}
defer stmtTbl.Close()
rowsAffected, err := stmtTbl.Exe()
if err != nil {
	panic(err)
}
fmt.Println(rowsAffected)

// begin first transaction
tx1, err := ses.StartTx()
if err != nil {
	panic(err)
}

// insert record
var id uint64
str := "Go is expressive, concise, clean, and efficient."
qry = "(C2) VALUES (:C2)"
if autoC1 > 0 {
	qry = fmt.Sprintf("(C1,C2) VALUES (%d,:C2)", autoC1)
	autoC1++
}
stmtIns, err := ses.Prep(fmt.Sprintf(
	"INSERT INTO %v "+qry+" RETURNING C1 INTO :C1", tableName))
defer stmtIns.Close()
rowsAffected, err = stmtIns.Exe(str, &id)
if err != nil {
	panic(err)
}
fmt.Println(rowsAffected)

// insert nullable ora.String slice
a := make([]ora.String, 4)
a[0] = ora.String{Value: "Its concurrency mechanisms make it easy to"}
a[1] = ora.String{IsNull: true}
a[2] = ora.String{Value: "It's a fast, statically typed, compiled"}
a[3] = ora.String{Value: "One of Go's key design goals is code"}
if autoC1 > 0 {
	qry = "(C1,C2) VALUES (:C1,:C2)"
}
stmtSliceIns, err := ses.Prep(fmt.Sprintf(
	"INSERT INTO %v "+qry, tableName))
defer stmtSliceIns.Close()
if err != nil {
	panic(err)
}
if autoC1 == 0 {
	rowsAffected, err = stmtSliceIns.Exe(a)
} else {
	b := make([]ora.Int32, len(a))
	for i := range b {
		b[i] = ora.Int32{Value: int32(autoC1)}
		autoC1++
	}
	rowsAffected, err = stmtSliceIns.Exe(b, a)
}
if err != nil {
	panic(err)
}
fmt.Println(rowsAffected)

// fetch records
stmtQry, err := ses.Prep(fmt.Sprintf(
	"SELECT C1, C2 FROM %v", tableName))
defer stmtQry.Close()
if err != nil {
	panic(err)
}
rset, err := stmtQry.Qry()
if err != nil {
	panic(err)
}
for rset.Next() {
	fmt.Println(rset.Row[0], emptyString(rset.Row[1].(string)))
}
if rset.Err != nil {
	panic(rset.Err)
}

// commit first transaction
err = tx1.Commit()
if err != nil {
	panic(err)
}

// begin second transaction
tx2, err := ses.StartTx()
if err != nil {
	panic(err)
}
// insert null ora.String
nullableStr := ora.String{IsNull: true}
stmtTrans, err := ses.Prep(fmt.Sprintf(
	"INSERT INTO %v (C2) VALUES (:C2)", tableName))
if err != nil {
	panic(err)
}
defer stmtTrans.Close()
rowsAffected, err = stmtTrans.Exe(nullableStr)
if err != nil {
	panic(err)
}
fmt.Println(rowsAffected)
// rollback second transaction
err = tx2.Rollback()
if err != nil {
	panic(err)
}

// fetch and specify return type
stmtCount, err := ses.Prep(fmt.Sprintf(
	"SELECT COUNT(C1) FROM %v WHERE C2 IS NULL", tableName), ora.U8)
defer stmtCount.Close()
if err != nil {
	panic(err)
}
rset, err = stmtCount.Qry()
if err != nil {
	panic(err)
}
row := rset.NextRow()
if row != nil {
	fmt.Println(row[0])
}
if rset.Err != nil {
	panic(rset.Err)
}

// create stored procedure with sys_refcursor
stmtProcCreate, err := ses.Prep(fmt.Sprintf(
	"CREATE OR REPLACE PROCEDURE PROC1(P1 OUT SYS_REFCURSOR) AS BEGIN "+
		"OPEN P1 FOR SELECT C1, C2 FROM %v WHERE C1 > 2 ORDER BY C1; "+
		"END PROC1;",
	tableName))
defer stmtProcCreate.Close()
rowsAffected, err = stmtProcCreate.Exe()
if err != nil {
	panic(err)
}

// call stored procedure
// pass *ora.Rset to Exec to receive the results of a sys_refcursor
stmtProcCall, err := ses.Prep("CALL PROC1(:1)")
defer stmtProcCall.Close()
if err != nil {
	panic(err)
}
procRset := &ora.Rset{}
rowsAffected, err = stmtProcCall.Exe(procRset)
if err != nil {
	panic(err)
}
if procRset.IsOpen() {
	for procRset.Next() {
		fmt.Println(procRset.Row[0], emptyString(procRset.Row[1].(string)))
	}
	if procRset.Err != nil {
		panic(procRset.Err)
	}
	fmt.Println(procRset.Len())
}
Output:

0
1
4
1 Go is expressive, concise, clean, and efficient.
2 Its concurrency mechanisms make it easy to
3 <empty>
4 It's a fast, statically typed, compiled
5 One of Go's key design goals is code
1
1
3 <empty>
4 It's a fast, statically typed, compiled
5 One of Go's key design goals is code
3

Index

Examples

Constants

View Source
const (
	// The driver name registered with the database/sql package.
	Name string = "ora"

	// The driver version sent to an Oracle server and visible in
	// V$SESSION_CONNECT_INFO or GV$SESSION_CONNECT_INFO.
	Version string = "v2.0.0"
)

Variables

View Source
var Schema string = ""

Schema may optionally be specified to prefix a table name in the sql generated by the ora.Ins, ora.Upd, ora.Del, and ora.Sel methods.

Functions

func AddTbl

func AddTbl(v interface{}, tblName string) (err error)

AddTbl maps a table name to a struct type when a struct type name is not identitcal to an Oracle table name.

AddTbl is optional and used by the orm-like methods ora.Ins, ora.Upd, ora.Del, and ora.Sel.

AddTbl may be called once during the lifetime of the driver.

func Del

func Del(v interface{}, ses *Ses) (err error)

Del deletes a struct from an Oracle table returning a possible error.

Specify a struct, or struct pointer to parameter 'v' and an open Ses to parameter 'ses'.

Del requires one struct field tagged with `db:"pk"`. The field tagged with `db:"pk"` is used in a sql WHERE clause.

By default, Del generates and executes a sql DELETE statement based on the struct name and one exported field name tagged with `db:"pk"`. A struct name is used for the table name and a field name is used for a column name. Prior to calling Del, you may specify an alternative table name to ora.AddTbl. An alternative column name may be specified to the field tag `db:"column_name"`.

Set ora.Schema to specify an optional table name prefix.

func GctName

func GctName(gct GoColumnType) string

func Ins

func Ins(v interface{}, ses *Ses) (err error)

Ins inserts a struct into an Oracle table returning a possible error.

Specify a struct, or struct pointer to parameter 'v' and an open Ses to parameter 'ses'.

Optional struct field tags `db:"column_name,id,-"` may be specified to control how the sql INSERT statement is generated.

By default, Ins generates and executes a sql INSERT statement based on the struct name and all exported field names. A struct name is used for the table name and a field name is used for a column name. Prior to calling Ins, you may specify an alternative table name to ora.AddTbl. An alternative column name may be specified to the field tag `db:"column_name"`. Specifying the `db:"-"` tag will remove a field from the INSERT statement.

The optional `db:"id"` field tag may combined with the `db:"pk"` tag. A field tagged with `db:"pk,id"` indicates a field is a primary key backed by an Oracle identity sequence. `db:"pk,id"` may be tagged to one field per struct. When `db:"pk,id"` is tagged to a field Ins generates a RETURNING clause to recevie a db generated identity value. The `db:"id"` tag is not required and Ins will insert a struct to a table without returning an identity value.

Set ora.Schema to specify an optional table name prefix.

func NumEnv

func NumEnv() int

NumEnv returns the number of open Oracle environments.

func Register

func Register(cfg *DrvCfg)

Register registers the ora database driver with the database/sql package.

Call Register once before sql.Open when working with database/sql:

func init() {
	ora.Register(nil)
}

Register is unnecessary if you're working directly with the ora package.

func Sel

func Sel(v interface{}, rt ResType, ses *Ses, where string, whereParams ...interface{}) (result interface{}, err error)

Sel selects structs from an Oracle table returning a specified container of structs and a possible error.

Specify a struct, or struct pointer to parameter 'v' to indicate the struct return type. Specify a ResType to parameter 'rt' to indicate the container return type. Possible container return types include a slice of structs, slice of struct pointers, map of structs, and map of struct pointers. Specify an open Ses to parameter 'ses'. Optionally specify a where clause to parameter 'where' and where parameters to variadic parameter 'whereParams'.

Optional struct field tags `db:"column_name,omit"` may be specified to control how the sql SELECT statement is generated. Optional struct field tags `db:"pk,fk1,fk2,fk3,fk4"` control how a map return type is generated.

A slice may be returned by specifying one of the 'SliceOf' ResTypes to parameter 'rt'. Specify a SliceOfPtr to return a slice of struct pointers. Specify a SliceOfVal to return a slice of structs.

A map may be returned by specifying one of the 'MapOf' ResTypes to parameter 'rt'. The map key type is based on a struct field type tagged with one of `db:"pk"`, `db:"fk1"`, `db:"fk2"`, `db:"fk3"`, or `db:"fk4"` matching the specified ResType suffix Pk, Fk1, Fk2, Fk3, or Fk4. The map value type is a struct pointer when a 'MapOfPtr' ResType is specified. The map value type is a struct when a 'MapOfVal' ResType is specified. For example, tagging a uint64 struct field with `db:"pk"` and specifying a MapOfPtrPk generates a map with a key type of uint64 and a value type of struct pointer.

ResTypes available to specify to parameter 'rt' are MapOfPtrPk, MapOfPtrFk1, MapOfPtrFk2, MapOfPtrFk3, MapOfPtrFk4, MapOfValPk, MapOfValFk1, MapOfValFk2, MapOfValFk3, and MapOfValFk4.

Set ora.Schema to specify an optional table name prefix.

func SetCfg

func SetCfg(cfg DrvCfg)

SetCfg applies the specified cfg to the ora database driver and any open Envs.

func Upd

func Upd(v interface{}, ses *Ses) (err error)

Upd updates a struct to an Oracle table returning a possible error.

Specify a struct, or struct pointer to parameter 'v' and an open Ses to parameter 'ses'.

Upd requires one struct field tagged with `db:"pk"`. The field tagged with `db:"pk"` is used in a sql WHERE clause. Optional struct field tags `db:"column_name,-"` may be specified to control how the sql UPDATE statement is generated.

By default, Upd generates and executes a sql UPDATE statement based on the struct name and all exported field names. A struct name is used for the table name and a field name is used for a column name. Prior to calling Upd, you may specify an alternative table name to ora.AddTbl. An alternative column name may be specified to the field tag `db:"column_name"`. Specifying the `db:"-"` tag will remove a field from the UPDATE statement.

Set ora.Schema to specify an optional table name prefix.

Types

type Bfile

type Bfile struct {
	IsNull         bool
	DirectoryAlias string
	Filename       string
}

Bfile represents a nullable BFILE Oracle value.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 bfile)", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Bfile
a := ora.Bfile{IsNull: false, DirectoryAlias: "TEMP_DIR", Filename: "test.txt"}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// fetch ora.Bfile
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName))
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Printf("%v", rset.Row[0])
}
Output:

{false TEMP_DIR test.txt}

func (Bfile) Equals

func (this Bfile) Equals(other Bfile) bool

Equals returns true when the receiver and specified Bfile are both null, or when the receiver and specified Bfile are both not null, DirectoryAlias are equal and Filename are equal.

type Bool

type Bool struct {
	IsNull bool
	Value  bool
}

Bool is a nullable bool.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 char(1 byte))", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Bool slice
a := make([]ora.Bool, 5)
a[0] = ora.Bool{Value: true}
a[1] = ora.Bool{Value: false}
a[2] = ora.Bool{IsNull: true}
a[3] = ora.Bool{Value: false}
a[4] = ora.Bool{Value: true}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraB to Prep method to return nullable ora.Bool values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraB)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

{false true}
{false false}
{true false}
{false false}
{false true}

func (Bool) Equals

func (this Bool) Equals(other Bool) bool

Equals returns true when the receiver and specified Bool are both null, or when the receiver and specified Bool are both not null and Values are equal.

type Con

type Con struct {
	// contains filtered or unexported fields
}

Con is an Oracle connection associated with a server and session.

Implements the driver.Conn interface.

func (*Con) Begin

func (con *Con) Begin() (driver.Tx, error)

Begin starts a transaction.

Begin is a member of the driver.Conn interface.

func (*Con) Close

func (con *Con) Close() (err error)

Close ends a session and disconnects from an Oracle server.

Close is a member of the driver.Conn interface.

func (*Con) IsOpen

func (con *Con) IsOpen() bool

IsOpen returns true when the connection to the Oracle server is open; otherwise, false.

Calling Close will cause IsOpen to return false. Once closed, a connection cannot be re-opened. To open a new connection call Open on a driver.

func (*Con) Ping

func (con *Con) Ping() error

Ping makes a round-trip call to an Oracle server to confirm that the connection is active.

func (*Con) Prepare

func (con *Con) Prepare(sql string) (driver.Stmt, error)

Prepare readies a sql string for use.

Prepare is a member of the driver.Conn interface.

type Drv

type Drv struct {
	// contains filtered or unexported fields
}

Drv represents an Oracle database driver.

Drv is not meant to be called by user-code.

Drv implements the driver.Driver interface.

func (*Drv) Open

func (drv *Drv) Open(conStr string) (driver.Conn, error)

Open opens a connection to an Oracle server with the database/sql environment.

This is intended to be called by the database/sql package only.

Alternatively, you may call Env.OpenCon to create an *ora.Con.

Open is a member of the driver.Driver interface.

type DrvCfg

type DrvCfg struct {
	Env *EnvCfg
	Log LogDrvCfg
}

DrvCfg represents configuration values for the ora package.

func Cfg

func Cfg() *DrvCfg

Cfg returns the ora database driver's cfg.

func NewDrvCfg

func NewDrvCfg() *DrvCfg

NewDrvCfg creates a DrvCfg with default values.

type DrvExecResult

type DrvExecResult struct {
	// contains filtered or unexported fields
}

DrvExecResult is an Oracle execution result.

DrvExecResult implements the driver.Result interface.

func (*DrvExecResult) LastInsertId

func (er *DrvExecResult) LastInsertId() (int64, error)

LastInsertId returns the identity value from an insert statement.

There are two setup steps required to reteive the LastInsertId. One, specify a 'returning into' clause in the SQL insert statement. And, two, specify a nil parameter to DB.Exec or DrvStmt.Exec.

For example:

db, err := sql.Open("ora", "scott/tiger@orcl")

db.Exec("CREATE TABLE T1 (C1 NUMBER(19,0) GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1), C2 VARCHAR2(48 CHAR))")

result, err := db.Exec("INSERT INTO T1 (C2) VALUES ('GO') RETURNING C1 INTO :C1", nil)

id, err := result.LastInsertId()

func (*DrvExecResult) RowsAffected

func (er *DrvExecResult) RowsAffected() (int64, error)

RowsAffected returns the number of rows affected by the exec statement.

type DrvQueryResult

type DrvQueryResult struct {
	// contains filtered or unexported fields
}

DrvQueryResult contains methods to retrieve the results of a SQL select statement.

DrvQueryResult implements the driver.Rows interface.

func (*DrvQueryResult) Close

func (qr *DrvQueryResult) Close() error

Close performs no operations.

Close is a member of the driver.Rows interface.

func (*DrvQueryResult) Columns

func (qr *DrvQueryResult) Columns() []string

Columns returns query column names.

Columns is a member of the driver.Rows interface.

func (*DrvQueryResult) Next

func (qr *DrvQueryResult) Next(dest []driver.Value) (err error)

Next populates the specified slice with the next row of data.

Returns io.EOF when there are no more rows.

Next is a member of the driver.Rows interface.

type DrvStmt

type DrvStmt struct {
	// contains filtered or unexported fields
}

DrvStmt is an Oracle statement associated with a session.

DrvStmt wraps Stmt and is intended for use by the database/sql/driver package.

DrvStmt implements the driver.Stmt interface.

func (*DrvStmt) Close

func (ds *DrvStmt) Close() (err error)

Close closes the SQL statement.

Close is a member of the driver.Stmt interface.

func (*DrvStmt) Exec

func (ds *DrvStmt) Exec(values []driver.Value) (result driver.Result, err error)

Exec executes an Oracle SQL statement on a server. Exec returns a driver.Result and a possible error.

Exec is a member of the driver.Stmt interface.

Example (Delete)
db, _ := sql.Open("ora", testConStr)
defer db.Close()

tableName := tableName()
db.Exec(fmt.Sprintf("create table %v (c1 number)", tableName))
db.Exec(fmt.Sprintf("insert into %v (c1) values (9)", tableName))

// placeholder ':1' is bound by position; ':1' may be any name
var v int64 = 9
result, _ := db.Exec(fmt.Sprintf("delete from %v where c1 = :1", tableName), v)
rowsAffected, _ := result.RowsAffected()
fmt.Println(rowsAffected)
Output:

1
Example (Insert)
db, _ := sql.Open("ora", testConStr)
defer db.Close()

tableName := tableName()
db.Exec(fmt.Sprintf("create table %v (c1 number)", tableName))

// placeholder ':c1' is bound by position; ':c1' may be any name
var value int64 = 9
result, err := db.Exec(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName), value)
if err != nil {
	panic(err)
}
rowsAffected, _ := result.RowsAffected()
fmt.Println(rowsAffected)
Output:

1
Example (Insert_bool)
db, _ := sql.Open("ora", testConStr)
defer db.Close()

tableName := tableName()
db.Exec(fmt.Sprintf("create table %v (c1 char(1 byte))", tableName))

// default false symbol is '0'
// default true symbol is '1'
// placeholder ':c1' is bound by position; ':c1' may be any name
var value bool = true
result, _ := db.Exec(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName), value)
rowsAffected, _ := result.RowsAffected()
fmt.Println(rowsAffected)
Output:

1
Example (Insert_return_identity)
db, _ := sql.Open("ora", testConStr)
defer db.Close()

tableName := tableName()
qry := "create table " + tableName + " (c1 number(19,0) generated always as identity (start with 1 increment by 1), c2 varchar2(48 char))"
if _, err := db.Exec(qry); err != nil {
	qry = strings.Replace(qry, "generated always as identity (start with 1 increment by 1)", "DEFAULT 1", 1)
	if _, err = db.Exec(qry); err != nil {
		fmt.Fprintf(os.Stderr, "error creating table with %q: %v", qry, err)
		return
	}
}

// use a 'returning into' SQL clause and specify a nil parameter to Exec
// placeholder ':c1' is bound by position; ':c1' may be any name
result, err := db.Exec(fmt.Sprintf("insert into %v (c2) values ('go') returning c1 into :c1", tableName), nil)
if err != nil {
	fmt.Fprintf(os.Stderr, "error inserting 'go' with returning: %v", err)
	return
}
id, _ := result.LastInsertId()
fmt.Println(id)
Output:

1
Example (Update)
db, _ := sql.Open("ora", testConStr)
defer db.Close()

tableName := tableName()
db.Exec(fmt.Sprintf("create table %v (c1 number)", tableName))
db.Exec(fmt.Sprintf("insert into %v (c1) values (9)", tableName))

// placeholder ':three' and ':nine' are bound by position; ':three' and ':nine' may be any name
var three int64 = 3
var nine int64 = 9
result, _ := db.Exec(fmt.Sprintf("update %v set c1 = :three where c1 = :nine", tableName), three, nine)
rowsAffected, _ := result.RowsAffected()
fmt.Println(rowsAffected)
Output:

1

func (*DrvStmt) NumInput

func (ds *DrvStmt) NumInput() int

NumInput returns the number of placeholders in a sql statement.

NumInput is a member of the driver.Stmt interface.

func (*DrvStmt) Query

func (ds *DrvStmt) Query(values []driver.Value) (driver.Rows, error)

Query runs a SQL query on an Oracle server. Query returns driver.Rows and a possible error.

Query is a member of the driver.Stmt interface.

type EmpLgr

type EmpLgr struct{}

func (EmpLgr) Errorf

func (e EmpLgr) Errorf(format string, v ...interface{})

func (EmpLgr) Errorln

func (e EmpLgr) Errorln(v ...interface{})

func (EmpLgr) Infof

func (e EmpLgr) Infof(format string, v ...interface{})

func (EmpLgr) Infoln

func (e EmpLgr) Infoln(v ...interface{})

type Env

type Env struct {
	// contains filtered or unexported fields
}

Env represents an Oracle environment.

func OpenEnv

func OpenEnv(cfg *EnvCfg) (env *Env, err error)

OpenEnv opens an Oracle environment.

Optionally specify a cfg parameter. If cfg is nil, default cfg values are applied.

func (*Env) Cfg

func (env *Env) Cfg() *EnvCfg

Cfg returns the Env's cfg.

func (*Env) Close

func (env *Env) Close() (err error)

Close disconnects from servers and resets optional fields.

func (*Env) IsOpen

func (env *Env) IsOpen() bool

IsOpen returns true when the environment is open; otherwise, false.

Calling Close will cause IsOpen to return false. Once closed, the environment may be re-opened by calling Open.

func (*Env) NumCon

func (env *Env) NumCon() int

NumCon returns the number of open Oracle connections.

func (*Env) NumSrv

func (env *Env) NumSrv() int

NumSrv returns the number of open Oracle servers.

func (*Env) OpenCon

func (env *Env) OpenCon(str string) (con *Con, err error)

OpenCon starts an Oracle session on a server returning a *Con and possible error.

The connection string has the form username/password@dblink e.g., scott/tiger@orcl dblink is a connection identifier such as a net service name, full connection identifier, or a simple connection identifier. The dblink may be defined in the client machine's tnsnames.ora file.

func (*Env) OpenSrv

func (env *Env) OpenSrv(cfg *SrvCfg) (srv *Srv, err error)

OpenSrv connects to an Oracle server returning a *Srv and possible error.

func (*Env) SetCfg

func (env *Env) SetCfg(cfg *EnvCfg)

SetCfg applies the specified cfg to the Env.

Open Srvs do not observe the specified cfg.

type EnvCfg

type EnvCfg struct {
	// StmtCfg configures new Stmts.
	StmtCfg *StmtCfg
}

EnvCfg configures a new Env.

func NewEnvCfg

func NewEnvCfg() *EnvCfg

NewEnvCfg creates a EnvCfg with default values.

type Float32

type Float32 struct {
	IsNull bool
	Value  float32
}

Float32 is a nullable float32.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number(16,15))", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Float32 slice
a := make([]ora.Float32, 5)
a[0] = ora.Float32{Value: -float32(6.28318)}
a[1] = ora.Float32{Value: -float32(3.14159)}
a[2] = ora.Float32{IsNull: true}
a[3] = ora.Float32{Value: float32(3.14159)}
a[4] = ora.Float32{Value: float32(6.28318)}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraF32 to Prep method to return nullable ora.Float32 values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraF32)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

{false -6.28318}
{false -3.14159}
{true 0}
{false 3.14159}
{false 6.28318}

func (Float32) Equals

func (this Float32) Equals(other Float32) bool

Equals returns true when the receiver and specified Float32 are both null, or when the receiver and specified Float32 are both not null and Values are equal.

type Float64

type Float64 struct {
	IsNull bool
	Value  float64
}

Float64 is a nullable float64.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number(16,15))", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Float64 slice
a := make([]ora.Float64, 5)
a[0] = ora.Float64{Value: -float64(6.28318)}
a[1] = ora.Float64{Value: -float64(3.14159)}
a[2] = ora.Float64{IsNull: true}
a[3] = ora.Float64{Value: float64(3.14159)}
a[4] = ora.Float64{Value: float64(6.28318)}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraF64 to Prep method to return nullable ora.Float64 values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraF64)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

{false -6.28318}
{false -3.14159}
{true 0}
{false 3.14159}
{false 6.28318}

func (Float64) Equals

func (this Float64) Equals(other Float64) bool

Equals returns true when the receiver and specified Float64 are both null, or when the receiver and specified Float64 are both not null and Values are equal.

type GoColumnType

type GoColumnType uint

ColumnGoType defines the Go type returned from a sql select column.

const (
	// D defines a sql select column based on its default mapping.
	D GoColumnType = iota
	// I64 defines a sql select column as a Go int64.
	I64
	// I32 defines a sql select column as a Go int32.
	I32
	// I16 defines a sql select column as a Go int16.
	I16
	// I8 defines a sql select column as a Go int8.
	I8
	// U64 defines a sql select column as a Go uint64.
	U64
	// U32 defines a sql select column as a Go uint32.
	U32
	// U16 defines a sql select column as a Go uint16.
	U16
	// U8 defines a sql select column as a Go uint8.
	U8
	// F64 defines a sql select column as a Go float64.
	F64
	// F32 defines a sql select column as a Go float32.
	F32
	// OraI64 defines a sql select column as a nullable Go ora.Int64.
	OraI64
	// OraI32 defines a sql select column as a nullable Go ora.Int32.
	OraI32
	// OraI16 defines a sql select column as a nullable Go ora.Int16.
	OraI16
	// OraI8 defines a sql select column as a nullable Go ora.Int8.
	OraI8
	// OraU64 defines a sql select column as a nullable Go ora.Uint64.
	OraU64
	// OraU32 defines a sql select column as a nullable Go ora.Uint32.
	OraU32
	// OraU16 defines a sql select column as a nullable Go ora.Uint16.
	OraU16
	// OraU8 defines a sql select column as a nullable Go ora.Uint8.
	OraU8
	// OraF64 defines a sql select column as a nullable Go ora.Float64.
	OraF64
	// OraF32 defines a sql select column as a nullable Go ora.Float32.
	OraF32
	// T defines a sql select column as a Go time.Time.
	T
	// OraT defines a sql select column as a nullable Go ora.Time.
	OraT
	// S defines a sql select column as a Go string.
	S
	// OraS defines a sql select column as a nullable Go ora.String.
	OraS
	// B defines a sql select column as a Go bool.
	B
	// OraB defines a sql select column as a nullable Go ora.Bool.
	OraB
	// Bin defines a sql select column or bind parmeter as a Go byte slice.
	Bin
	// OraBin defines a sql select column as a nullable Go ora.Binary.
	OraBin
)

go column types

type Id

type Id struct {
	// contains filtered or unexported fields
}

type Int16

type Int16 struct {
	IsNull bool
	Value  int16
}

Int16 is a nullable int16.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number(10,0))", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Int16 slice
a := make([]ora.Int16, 5)
a[0] = ora.Int16{Value: -9}
a[1] = ora.Int16{Value: -1}
a[2] = ora.Int16{IsNull: true}
a[3] = ora.Int16{Value: 1}
a[4] = ora.Int16{Value: 9}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraI16 to Prep method to return nullable ora.Int16 values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraI16)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

{false -9}
{false -1}
{true 0}
{false 1}
{false 9}

func (Int16) Equals

func (this Int16) Equals(other Int16) bool

Equals returns true when the receiver and specified Int16 are both null, or when the receiver and specified Int16 are both not null and Values are equal.

type Int32

type Int32 struct {
	IsNull bool
	Value  int32
}

Int32 is a nullable int32.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number(10,0))", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Int32 slice
a := make([]ora.Int32, 5)
a[0] = ora.Int32{Value: -9}
a[1] = ora.Int32{Value: -1}
a[2] = ora.Int32{IsNull: true}
a[3] = ora.Int32{Value: 1}
a[4] = ora.Int32{Value: 9}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraI32 to Prep method to return nullable ora.Int32 values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraI32)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

{false -9}
{false -1}
{true 0}
{false 1}
{false 9}

func (Int32) Equals

func (this Int32) Equals(other Int32) bool

Equals returns true when the receiver and specified Int32 are both null, or when the receiver and specified Int32 are both not null and Values are equal.

type Int64

type Int64 struct {
	IsNull bool
	Value  int64
}

Int64 is a nullable int64.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number(10,0))", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Int64 slice
a := make([]ora.Int64, 5)
a[0] = ora.Int64{Value: -9}
a[1] = ora.Int64{Value: -1}
a[2] = ora.Int64{IsNull: true}
a[3] = ora.Int64{Value: 1}
a[4] = ora.Int64{Value: 9}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraI64 to Prep method to return nullable ora.Int64 values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraI64)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

{false -9}
{false -1}
{true 0}
{false 1}
{false 9}

func (Int64) Equals

func (this Int64) Equals(other Int64) bool

Equals returns true when the receiver and specified Int64 are both null, or when the receiver and specified Int64 are both not null and Values are equal.

type Int8

type Int8 struct {
	IsNull bool
	Value  int8
}

Int8 is a nullable int8.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number(10,0))", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Int8 slice
a := make([]ora.Int8, 5)
a[0] = ora.Int8{Value: -9}
a[1] = ora.Int8{Value: -1}
a[2] = ora.Int8{IsNull: true}
a[3] = ora.Int8{Value: 1}
a[4] = ora.Int8{Value: 9}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraI8 to Prep method to return nullable ora.Int8 values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraI8)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

{false -9}
{false -1}
{true 0}
{false 1}
{false 9}

func (Int8) Equals

func (this Int8) Equals(other Int8) bool

Equals returns true when the receiver and specified Int8 are both null, or when the receiver and specified Int8 are both not null and Values are equal.

type IntervalDS

type IntervalDS struct {
	IsNull     bool
	Day        int32
	Hour       int32
	Minute     int32
	Second     int32
	Nanosecond int32
}

IntervalDS represents a nullable INTERVAL DAY TO SECOND Oracle value.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 interval day to second)", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.IntervalDS slice
a := make([]ora.IntervalDS, 5)
a[0] = ora.IntervalDS{Day: 1, Hour: 1, Minute: 1, Second: 1, Nanosecond: 123456789}
a[1] = ora.IntervalDS{Day: 59, Hour: 59, Minute: 59, Second: 59, Nanosecond: 123456789}
a[2] = ora.IntervalDS{IsNull: true}
a[3] = ora.IntervalDS{Day: -1, Hour: -1, Minute: -1, Second: -1, Nanosecond: -123456789}
a[4] = ora.IntervalDS{Day: -59, Hour: -59, Minute: -59, Second: -59, Nanosecond: -123456789}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// fetch ora.IntervalDS
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName))
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Printf("%v, ", rset.Row[0])
}
Output:

{false 1 1 1 1 123457000}, {false 59 59 59 59 123457000}, {true 0 0 0 0 0}, {false -1 -1 -1 -1 -123457000}, {false -59 -59 -59 -59 -123457000},

func (IntervalDS) Equals

func (this IntervalDS) Equals(other IntervalDS) bool

Equals returns true when the receiver and specified IntervalDS are both null, or when the receiver and specified IntervalDS are both not null, and all other fields are equal.

func (IntervalDS) ShiftTime

func (this IntervalDS) ShiftTime(t time.Time) time.Time

ShiftTime returns a new Time with IntervalDS applied.

Example
package main

import (
	"fmt"
	"ora"
	"time"
)

func main() {
	interval := ora.IntervalDS{Day: 1, Hour: 1, Minute: 1, Second: 1, Nanosecond: 123456789}
	actual := interval.ShiftTime(time.Date(2000, time.Month(1), 1, 0, 0, 0, 0, time.Local))
	fmt.Println(actual.Day(), actual.Hour(), actual.Minute(), actual.Second(), actual.Nanosecond())
}
Output:

2 1 1 1 123456789

type IntervalYM

type IntervalYM struct {
	IsNull bool
	Year   int32
	Month  int32
}

IntervalYM represents a nullable INTERVAL YEAR TO MONTH Oracle value.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 interval year to month)", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.IntervalYM slice
a := make([]ora.IntervalYM, 5)
a[0] = ora.IntervalYM{Year: 1, Month: 1}
a[1] = ora.IntervalYM{Year: 99, Month: 9}
a[2] = ora.IntervalYM{IsNull: true}
a[3] = ora.IntervalYM{Year: -1, Month: -1}
a[4] = ora.IntervalYM{Year: -99, Month: -9}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// fetch ora.IntervalYM
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName))
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Printf("%v, ", rset.Row[0])
}
Output:

{false 1 1}, {false 99 9}, {true 0 0}, {false -1 -1}, {false -99 -9},

func (IntervalYM) Equals

func (this IntervalYM) Equals(other IntervalYM) bool

Equals returns true when the receiver and specified IntervalYM are both null, or when the receiver and specified IntervalYM are both not null, Year are equal and Month are equal.

func (IntervalYM) ShiftTime

func (this IntervalYM) ShiftTime(t time.Time) time.Time

ShiftTime returns a new Time with IntervalYM applied.

Example
package main

import (
	"fmt"
	"ora"
	"time"
)

func main() {
	interval := ora.IntervalYM{Year: 1, Month: 1}
	actual := interval.ShiftTime(time.Date(2000, time.January, 0, 0, 0, 0, 0, time.Local))
	fmt.Println(actual.Year(), actual.Month(), actual.Day())
	// returns normalized date per time.AddDate
	
Output:

type Lob

type Lob struct {
	io.Reader
	io.Closer
}

Lob's Reader is sent to the DB on bind, if not nil. The Reader can read the LOB if we bind a *Lob, Closer will close the LOB.

func (Lob) Bytes

func (this Lob) Bytes() ([]byte, error)

func (Lob) Close

func (this Lob) Close() error

func (Lob) Equals

func (this Lob) Equals(other Lob) bool

Equals returns true when the receiver and specified Lob are both null, or when they both not null and share the same Reader.

type LogConCfg

type LogConCfg struct {
	// Close determines whether the Con.Close method is logged.
	//
	// The default is true.
	Close bool

	// Prepare determines whether the Con.Prepare method is logged.
	//
	// The default is true.
	Prepare bool

	// Begin determines whether the Con.Begin method is logged.
	//
	// The default is true.
	Begin bool

	// Ping determines whether the Con.Ping method is logged.
	//
	// The default is true.
	Ping bool
}

LogConCfg represents Con logging configuration values.

func NewLogConCfg

func NewLogConCfg() LogConCfg

NewLogConCfg creates a LogTxCfg with default values.

type LogDrvCfg

type LogDrvCfg struct {
	// Logger writes log messages.
	// Logger can be replaced with any type implementing the Logger interface.
	//
	// The default implementation uses the standard lib's log package.
	//
	// For a glog-based implementation, see github.com/rana/ora/glg.
	// LogDrvCfg.Logger = glg.Log
	//
	// For an gopkg.in/inconshreveable/log15.v2-based, see github.com/rana/ora/lg15.
	// LogDrvCfg.Logger = lg15.Log
	Logger Logger

	// OpenEnv determines whether the ora.OpenEnv method is logged.
	//
	// The default is true.
	OpenEnv bool

	// Ins determines whether the ora.Ins method is logged.
	//
	// The default is true.
	Ins bool

	// Upd determines whether the ora.Upd method is logged.
	//
	// The default is true.
	Upd bool

	// Del determines whether the ora.Del method is logged.
	//
	// The default is true.
	Del bool

	// Sel determines whether the ora.Sel method is logged.
	//
	// The default is true.
	Sel bool

	// AddTbl determines whether the ora.AddTbl method is logged.
	//
	// The default is true.
	AddTbl bool

	Env  LogEnvCfg
	Srv  LogSrvCfg
	Ses  LogSesCfg
	Stmt LogStmtCfg
	Tx   LogTxCfg
	Con  LogConCfg
	Rset LogRsetCfg
}

LogDrvCfg represents package-level logging configuration values.

func NewLogDrvCfg

func NewLogDrvCfg() LogDrvCfg

NewLogDrvCfg creates a LogDrvCfg with default values.

type LogEnvCfg

type LogEnvCfg struct {
	// Close determines whether the Env.Close method is logged.
	//
	// The default is true.
	Close bool

	// OpenSrv determines whether the Env.OpenSrv method is logged.
	//
	// The default is true.
	OpenSrv bool

	// OpenCon determines whether the Env.OpenCon method is logged.
	//
	// The default is true.
	OpenCon bool
}

LogEnvCfg represents Env logging configuration values.

func NewLogEnvCfg

func NewLogEnvCfg() LogEnvCfg

NewLogEnvCfg creates a LogEnvCfg with default values.

type LogRsetCfg

type LogRsetCfg struct {
	// Close determines whether the Rset.close method is logged.
	//
	// The default is true.
	Close bool

	// BeginRow determines whether the Rset.beginRow method is logged.
	//
	// The default is false.
	BeginRow bool

	// EndRow determines whether the Rset.endRow method is logged.
	//
	// The default is false.
	EndRow bool

	// Next determines whether the Rset.Next method is logged.
	//
	// The default is false.
	Next bool

	// Open determines whether the Rset.open method is logged.
	//
	// The default is true.
	Open bool

	// OpenDefs determines whether Select-list definitions with the Rset.open method are logged.
	//
	// The default is true.
	OpenDefs bool
}

LogRsetCfg represents Rset logging configuration values.

func NewLogRsetCfg

func NewLogRsetCfg() LogRsetCfg

NewLogTxCfg creates a LogRsetCfg with default values.

type LogSesCfg

type LogSesCfg struct {
	// Close determines whether the Ses.Close method is logged.
	//
	// The default is true.
	Close bool

	// PrepAndExe determines whether the Ses.PrepAndExe method is logged.
	//
	// The default is true.
	PrepAndExe bool

	// PrepAndQry determines whether the Ses.PrepAndQry method is logged.
	//
	// The default is true.
	PrepAndQry bool

	// Prep determines whether the Ses.Prep method is logged.
	//
	// The default is true.
	Prep bool

	// Ins determines whether the Ses.Ins method is logged.
	//
	// The default is true.
	Ins bool

	// Upd determines whether the Ses.Upd method is logged.
	//
	// The default is true.
	Upd bool

	// Sel determines whether the Ses.Sel method is logged.
	//
	// The default is true.
	Sel bool

	// StartTx determines whether the Ses.StartTx method is logged.
	//
	// The default is true.
	StartTx bool
}

LogSesCfg represents Ses logging configuration values.

func NewLogSesCfg

func NewLogSesCfg() LogSesCfg

NewLogSesCfg creates a LogSesCfg with default values.

type LogSrvCfg

type LogSrvCfg struct {
	// Close determines whether the Srv.Close method is logged.
	//
	// The default is true.
	Close bool

	// OpenSes determines whether the Srv.OpenSes method is logged.
	//
	// The default is true.
	OpenSes bool

	// Ping determines whether the Srv.Ping method is logged.
	//
	// The default is true.
	Ping bool

	// Version determines whether the Srv.Version method is logged.
	//
	// The default is true.
	Version bool

	// Break determines whether the Srv.Break method is logged.
	//
	// The default is true.
	Break bool
}

LogSrvCfg represents Srv logging configuration values.

func NewLogSrvCfg

func NewLogSrvCfg() LogSrvCfg

NewLogSrvCfg creates a LogSrvCfg with default values.

type LogStmtCfg

type LogStmtCfg struct {
	// Close determines whether the Stmt.Close method is logged.
	//
	// The default is true.
	Close bool

	// Exe determines whether the Stmt.Exe method is logged.
	//
	// The default is true.
	Exe bool

	// Qry determines whether the Stmt.Qry method is logged.
	//
	// The default is true.
	Qry bool

	// Bind determines whether the Stmt.bind method is logged.
	//
	// The default is true.
	Bind bool
}

LogStmtCfg represents Stmt logging configuration values.

func NewLogStmtCfg

func NewLogStmtCfg() LogStmtCfg

NewLogStmtCfg creates a LogStmtCfg with default values.

type LogTxCfg

type LogTxCfg struct {
	// Commit determines whether the Tx.Commit method is logged.
	//
	// The default is true.
	Commit bool

	// Rollback determines whether the Tx.Rollback method is logged.
	//
	// The default is true.
	Rollback bool
}

LogTxCfg represents Tx logging configuration values.

func NewLogTxCfg

func NewLogTxCfg() LogTxCfg

NewLogTxCfg creates a LogTxCfg with default values.

type Logger

type Logger interface {
	Infof(format string, args ...interface{})
	Infoln(args ...interface{})
	Errorf(format string, args ...interface{})
	Errorln(args ...interface{})
}

Logger interface is for logging.

type MultiErr

type MultiErr struct {
	// contains filtered or unexported fields
}

MultiErr holds multiple errors in a single string.

func (MultiErr) Error

func (m MultiErr) Error() string

Error returns one or more errors.

Error is a member of the 'error' interface.

type Raw

type Raw struct {
	IsNull bool
	Value  []byte
}

Raw represents a nullable byte slice for RAW or LONG RAW Oracle values.

func (Raw) Equals

func (this Raw) Equals(other Raw) bool

Equals returns true when the receiver and specified Raw are both null, or when the receiver and specified Raw are both not null and Values are equal.

type ResType

type ResType int

ResType represents a result type returned by the ora.Sel method.

const (
	// SliceOfPtr indicates a slice of struct pointers will be returned by the ora.Sel method.
	// The struct type is specified to ora.Sel by the user.
	SliceOfPtr ResType = iota

	// SliceOfVal indicates a slice of structs will be returned by the ora.Sel method.
	// The struct type is specified to ora.Sel by the user.
	SliceOfVal

	// MapOfPtrPk indicates a map of struct pointers will be returned by the ora.Sel method.
	// The struct type is specified to ora.Sel by the user.
	// The map key is determined by a struct field tagged with `db:"pk"`.
	MapOfPtrPk

	// MapOfPtrFk1 indicates a map of struct pointers will be returned by the ora.Sel method.
	// The struct type is specified to ora.Sel by the user.
	// The map key is determined by a struct field tagged with `db:"fk1"`.
	MapOfPtrFk1

	// MapOfPtrFk2 indicates a map of struct pointers will be returned by the ora.Sel method.
	// The struct type is specified to ora.Sel by the user.
	// The map key is determined by a struct field tagged with `db:"fk2"`.
	MapOfPtrFk2

	// MapOfPtrFk3 indicates a map of struct pointers will be returned by the ora.Sel method.
	// The struct type is specified to ora.Sel by the user.
	// The map key is determined by a struct field tagged with `db:"fk3"`.
	MapOfPtrFk3

	// MapOfPtrFk4 indicates a map of struct pointers will be returned by the ora.Sel method.
	// The struct type is specified to ora.Sel by the user.
	// The map key is determined by a struct field tagged with `db:"fk4"`.
	MapOfPtrFk4

	// MapOfValPk indicates a map of structs will be returned by the ora.Sel method.
	// The struct type is specified to ora.Sel by the user.
	// The map key is determined by a struct field tagged with `db:"pk"`.
	MapOfValPk

	// MapOfValFk1 indicates a map of structs will be returned by the ora.Sel method.
	// The struct type is specified to ora.Sel by the user.
	// The map key is determined by a struct field tagged with `db:"fk1"`.
	MapOfValFk1

	// MapOfValFk2 indicates a map of structs will be returned by the ora.Sel method.
	// The struct type is specified to ora.Sel by the user.
	// The map key is determined by a struct field tagged with `db:"fk2"`.
	MapOfValFk2

	// MapOfValFk3 indicates a map of structs will be returned by the ora.Sel method.
	// The struct type is specified to ora.Sel by the user.
	// The map key is determined by a struct field tagged with `db:"fk3"`.
	MapOfValFk3

	// MapOfValFk4 indicates a map of structs will be returned by the ora.Sel method.
	// The struct type is specified to ora.Sel by the user.
	// The map key is determined by a struct field tagged with `db:"fk4"`.
	MapOfValFk4
)

type Rset

type Rset struct {
	Row         []interface{}
	ColumnNames []string
	Index       int
	Err         error
	// contains filtered or unexported fields
}

Rset represents a result set used to obtain Go values from a SQL select statement.

Opening and closing a Rset is managed internally. Rset doesn't have an Open method or Close method.

Example (Cursor_multiple)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number, c2 varchar2(48 char))", tableName))
defer stmt.Close()
stmt.Exe()

// insert records
a := make([]int64, 3)
a[0] = 5
a[1] = 7
a[2] = 9
b := make([]string, 3)
b[0] = "Go is expressive, concise, clean, and efficient."
b[1] = "Its concurrency mechanisms make it easy to"
b[2] = "Go compiles quickly to machine code yet has"
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1, c2) values (:1, :2)", tableName))
stmt.Exe(a, b)

// create proc
stmt, _ = ses.Prep(fmt.Sprintf("create or replace procedure proc1(p1 out sys_refcursor, p2 out sys_refcursor) as begin open p1 for select c1 from %v order by c1; open p2 for select c2 from %v order by c2; end proc1;", tableName, tableName))
defer stmt.Close()
stmt.Exe()

// pass *ora.Rset to Exec for an out sys_refcursor
// call proc
stmt, _ = ses.Prep("call proc1(:1, :2)")
defer stmt.Close()
rsetC1 := &ora.Rset{}
rsetC2 := &ora.Rset{}
stmt.Exe(rsetC1, rsetC2)
fmt.Println("--- first result set ---")
if rsetC1.IsOpen() {
	for rsetC1.Next() {
		fmt.Println(rsetC1.Row[0])
	}
}
fmt.Println("--- second result set ---")
if rsetC2.IsOpen() {
	for rsetC2.Next() {
		fmt.Println(rsetC2.Row[0])
	}
}
Output:

--- first result set ---
5
7
9
--- second result set ---
Go compiles quickly to machine code yet has
Go is expressive, concise, clean, and efficient.
Its concurrency mechanisms make it easy to
Example (Cursor_single)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number, c2 varchar2(48 char))", tableName))
defer stmt.Close()
stmt.Exe()

// insert records
a := make([]int64, 3)
a[0] = 5
a[1] = 7
a[2] = 9
b := make([]string, 3)
b[0] = "Go is expressive, concise, clean, and efficient."
b[1] = "Its concurrency mechanisms make it easy to"
b[2] = "Go compiles quickly to machine code yet has"
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1, c2) values (:1, :2)", tableName))
stmt.Exe(a, b)

// create proc
stmt, _ = ses.Prep(fmt.Sprintf("create or replace procedure proc1(p1 out sys_refcursor) as begin open p1 for select c1, c2 from %v order by c1; end proc1;", tableName))
defer stmt.Close()
stmt.Exe()

// pass *ora.Rset to Exec for an out sys_refcursor
// call proc
stmt, _ = ses.Prep("call proc1(:1)")
defer stmt.Close()
rset := &ora.Rset{}
stmt.Exe(rset)
if rset.IsOpen() {
	for rset.Next() {
		fmt.Println(rset.Row[0], rset.Row[1])
	}
}
Output:

5 Go is expressive, concise, clean, and efficient.
7 Its concurrency mechanisms make it easy to
9 Go compiles quickly to machine code yet has

func (*Rset) IsOpen

func (rset *Rset) IsOpen() bool

IsOpen returns true when a result set is open; otherwise, false.

func (*Rset) Len

func (rset *Rset) Len() int

Len returns the number of rows retrieved.

func (*Rset) Next

func (rset *Rset) Next() bool

Next attempts to load a row of data from an Oracle buffer. True is returned when a row of data is retrieved. False is returned when no data is available.

Retrieve the loaded row from the Rset.Row field. Rset.Row is updated on each call to Next. Rset.Row is set to nil when Next returns false.

When Next returns false check Rset.Err for any error that may have occured.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number)", tableName))
defer stmt.Close()
stmt.Exe()

// insert records
a := make([]uint16, 5)
for n, _ := range a {
	a[n] = uint16(n)
}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
rowsAffected, _ := stmt.Exe(a)
fmt.Println(rowsAffected)

// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.U16)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Printf("%v, ", rset.Row[0])
}
Output:

5
0, 1, 2, 3, 4,

func (*Rset) NextRow

func (rset *Rset) NextRow() []interface{}

NextRow attempts to load a row from the Oracle buffer and return the row. Nil is returned when there's no data.

When NextRow returns nil check Rset.Err for any error that may have occured.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number, c2 varchar2(48 char), c3 char(1 byte))", tableName))
defer stmt.Close()
stmt.Exe()

// insert record
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1, c2, c3) values (7, 'go', '1')", tableName))
defer stmt.Close()
stmt.Exe()

// fetch record
stmt, _ = ses.Prep(fmt.Sprintf("select c1, c2, c3 from %v", tableName))
rset, _ := stmt.Qry()
row := rset.NextRow()
fmt.Printf("%v %v %v", row[0], row[1], row[2])
Output:

7 go true

type RsetCfg

type RsetCfg struct {

	// TrueRune is rune a Go bool true value from SQL select-list character column.
	//
	// The is default is '1'.
	TrueRune rune
	// contains filtered or unexported fields
}

RsetCfg affects the association of Oracle select-list columns to Go types.

func NewRsetCfg

func NewRsetCfg() RsetCfg

NewRsetCfg returns a RsetCfg with default values.

func (*RsetCfg) BinaryDouble

func (c *RsetCfg) BinaryDouble() GoColumnType

BinaryDouble returns a GoColumnType associated to an Oracle select-list BINARY_DOUBLE column.

The default is F64.

BinaryDouble is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, BinaryDouble is used.

func (*RsetCfg) BinaryFloat

func (c *RsetCfg) BinaryFloat() GoColumnType

BinaryFloat returns a GoColumnType associated to an Oracle select-list BINARY_FLOAT column.

The default for the database/sql package is F64.

The default for the ora package is F32.

BinaryFloat is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, BinaryFloat is used.

func (*RsetCfg) Blob

func (c *RsetCfg) Blob() GoColumnType

Blob returns a GoColumnType associated to an Oracle select-list BLOB column.

The default is Bits.

Blob is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, Blob is used.

func (*RsetCfg) Char

func (c *RsetCfg) Char() GoColumnType

Char returns a GoColumnType associated to an Oracle select-list CHAR column and NCHAR column.

The default is S.

Char is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, Char is used.

func (*RsetCfg) Char1

func (c *RsetCfg) Char1() GoColumnType

Char1 returns a GoColumnType associated to an Oracle select-list CHAR column with length 1 and NCHAR column with length 1.

The default is B.

Char1 is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, Char1 is used.

func (*RsetCfg) Clob

func (c *RsetCfg) Clob() GoColumnType

Clob returns a GoColumnType associated to an Oracle select-list CLOB column and NCLOB column.

The default is S.

Clob is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, Clob is used.

func (*RsetCfg) Date

func (c *RsetCfg) Date() GoColumnType

Date returns a GoColumnType associated to an Oracle select-list DATE column.

The default is T.

Date is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, Date is used.

func (*RsetCfg) Float

func (c *RsetCfg) Float() GoColumnType

Float returns a GoColumnType associated to an Oracle select-list FLOAT column.

The default is F64.

Float is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, Float is used.

func (*RsetCfg) Long

func (c *RsetCfg) Long() GoColumnType

Long returns a GoColumnType associated to an Oracle select-list LONG column.

The default is S.

Long is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, Long is used.

func (*RsetCfg) LongRaw

func (c *RsetCfg) LongRaw() GoColumnType

LongRaw returns a GoColumnType associated to an Oracle select-list LONG RAW column.

The default is Bits.

LongRaw is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, LongRaw is used.

func (*RsetCfg) NumberFloat

func (c *RsetCfg) NumberFloat() GoColumnType

NumberFloat returns a GoColumnType associated to an Oracle select-list NUMBER column defined with a scale greater than zero.

The default is F64.

NumberFloat is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, NumberFloat is used.

func (*RsetCfg) NumberInt

func (c *RsetCfg) NumberInt() GoColumnType

NumberInt returns a GoColumnType associated to an Oracle select-list NUMBER column defined with scale zero.

The default is I64.

The database/sql package uses NumberInt.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, NumberInt is used.

func (*RsetCfg) Raw

func (c *RsetCfg) Raw() GoColumnType

Raw returns a GoColumnType associated to an Oracle select-list RAW column.

The default is Bits.

Raw is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, Raw is used.

func (*RsetCfg) SetBinaryDouble

func (c *RsetCfg) SetBinaryDouble(gct GoColumnType) (err error)

SetBinaryDouble sets a GoColumnType associated to an Oracle select-list BINARY_DOUBLE column.

Valid values are I64, I32, I16, I8, U64, U32, U16, U8, F64, F32, OraI64, OraI32, OraI16, OraI8, OraU64, OraU32, OraU16, OraU8, OraF64, OraF32.

Returns an error if a non-numeric GoColumnType is specified.

func (*RsetCfg) SetBinaryFloat

func (c *RsetCfg) SetBinaryFloat(gct GoColumnType) (err error)

SetBinaryFloat sets a GoColumnType associated to an Oracle select-list BINARY_FLOAT column.

Valid values are I64, I32, I16, I8, U64, U32, U16, U8, F64, F32, OraI64, OraI32, OraI16, OraI8, OraU64, OraU32, OraU16, OraU8, OraF64, OraF32.

Returns an error if a non-numeric GoColumnType is specified.

func (*RsetCfg) SetBlob

func (c *RsetCfg) SetBlob(gct GoColumnType) (err error)

SetBlob sets a GoColumnType associated to an Oracle select-list BLOB column.

Valid values are Bits and OraBits.

Returns an error if a non-string GoColumnType is specified.

func (*RsetCfg) SetChar

func (c *RsetCfg) SetChar(gct GoColumnType) (err error)

SetChar sets a GoColumnType associated to an Oracle select-list CHAR column and NCHAR column.

Valid values are S and OraS.

Returns an error if a non-string GoColumnType is specified.

func (*RsetCfg) SetChar1

func (c *RsetCfg) SetChar1(gct GoColumnType) (err error)

SetChar1 sets a GoColumnType associated to an Oracle select-list CHAR column with length 1 and NCHAR column with length 1.

Valid values are B, OraB, S and OraS.

Returns an error if a non-bool or non-string GoColumnType is specified.

func (*RsetCfg) SetClob

func (c *RsetCfg) SetClob(gct GoColumnType) (err error)

SetClob sets a GoColumnType associated to an Oracle select-list CLOB column and NCLOB column.

Valid values are S and OraS.

Returns an error if a non-string GoColumnType is specified.

func (*RsetCfg) SetDate

func (c *RsetCfg) SetDate(gct GoColumnType) (err error)

SetDate sets a GoColumnType associated to an Oracle select-list DATE column.

Valid values are T and OraT.

Returns an error if a non-time GoColumnType is specified.

func (*RsetCfg) SetFloat

func (c *RsetCfg) SetFloat(gct GoColumnType) (err error)

SetFloat sets a GoColumnType associated to an Oracle select-list FLOAT column.

Valid values are I64, I32, I16, I8, U64, U32, U16, U8, F64, F32, OraI64, OraI32, OraI16, OraI8, OraU64, OraU32, OraU16, OraU8, OraF64, OraF32.

Returns an error if a non-numeric GoColumnType is specified.

func (*RsetCfg) SetLong

func (c *RsetCfg) SetLong(gct GoColumnType) (err error)

SetLong sets a GoColumnType associated to an Oracle select-list LONG column.

Valid values are S and OraS.

Returns an error if a non-string GoColumnType is specified.

func (*RsetCfg) SetLongRaw

func (c *RsetCfg) SetLongRaw(gct GoColumnType) (err error)

SetLongRaw sets a GoColumnType associated to an Oracle select-list LONG RAW column.

Valid values are Bits and OraBits.

Returns an error if a non-string GoColumnType is specified.

func (*RsetCfg) SetNumberFloat

func (c *RsetCfg) SetNumberFloat(gct GoColumnType) (err error)

SetNumberFloat sets a GoColumnType associated to an Oracle select-list NUMBER column defined with a scale greater than zero.

Valid values are I64, I32, I16, I8, U64, U32, U16, U8, F64, F32, OraI64, OraI32, OraI16, OraI8, OraU64, OraU32, OraU16, OraU8, OraF64, OraF32.

Returns an error if a non-numeric GoColumnType is specified.

func (*RsetCfg) SetNumberInt

func (c *RsetCfg) SetNumberInt(gct GoColumnType) (err error)

SetNumberInt sets a GoColumnType associated to an Oracle select-list NUMBER column defined with scale zero.

Valid values are I64, I32, I16, I8, U64, U32, U16, U8, F64, F32, OraI64, OraI32, OraI16, OraI8, OraU64, OraU32, OraU16, OraU8, OraF64, OraF32.

Returns an error if a non-numeric GoColumnType is specified.

func (*RsetCfg) SetRaw

func (c *RsetCfg) SetRaw(gct GoColumnType) (err error)

SetRaw sets a GoColumnType associated to an Oracle select-list RAW column.

Valid values are Bits and OraBits.

Returns an error if a non-string GoColumnType is specified.

func (*RsetCfg) SetTimestamp

func (c *RsetCfg) SetTimestamp(gct GoColumnType) (err error)

SetTimestamp sets a GoColumnType associated to an Oracle select-list TIMESTAMP column.

Valid values are T and OraT.

Returns an error if a non-time GoColumnType is specified.

func (*RsetCfg) SetTimestampLtz

func (c *RsetCfg) SetTimestampLtz(gct GoColumnType) (err error)

SetTimestampLtz sets a GoColumnType associated to an Oracle select-list TIMESTAMP WITH LOCAL TIME ZONE column.

Valid values are T and OraT.

Returns an error if a non-time GoColumnType is specified.

func (*RsetCfg) SetTimestampTz

func (c *RsetCfg) SetTimestampTz(gct GoColumnType) (err error)

SetTimestampTz sets a GoColumnType associated to an Oracle select-list TIMESTAMP WITH TIME ZONE column.

Valid values are T and OraT.

Returns an error if a non-time GoColumnType is specified.

func (*RsetCfg) SetVarchar

func (c *RsetCfg) SetVarchar(gct GoColumnType) (err error)

SetVarchar sets a GoColumnType associated to an Oracle select-list VARCHAR column, VARCHAR2 column and NVARCHAR2 column.

Valid values are S and OraS.

Returns an error if a non-string GoColumnType is specified.

func (*RsetCfg) Timestamp

func (c *RsetCfg) Timestamp() GoColumnType

Timestamp returns a GoColumnType associated to an Oracle select-list TIMESTAMP column.

The default is T.

Timestamp is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, Timestamp is used.

func (*RsetCfg) TimestampLtz

func (c *RsetCfg) TimestampLtz() GoColumnType

TimestampLtz returns a GoColumnType associated to an Oracle select-list TIMESTAMP WITH LOCAL TIME ZONE column.

The default is T.

TimestampLtz is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, TimestampLtz is used.

func (*RsetCfg) TimestampTz

func (c *RsetCfg) TimestampTz() GoColumnType

TimestampTz returns a GoColumnType associated to an Oracle select-list TIMESTAMP WITH TIME ZONE column.

The default is T.

TimestampTz is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, TimestampTz is used.

func (*RsetCfg) Varchar

func (c *RsetCfg) Varchar() GoColumnType

Varchar returns a GoColumnType associated to an Oracle select-list VARCHAR column, VARCHAR2 column and NVARCHAR2 column.

The default is S.

Varchar is used by the database/sql package.

When using the ora package directly, custom GoColumnType associations may be specified to the Ses.Prep method. If no custom GoColumnType association is specified, Varchar is used.

type Ses

type Ses struct {
	// contains filtered or unexported fields
}

Ses is an Oracle session associated with a server.

func (*Ses) Cfg

func (ses *Ses) Cfg() *SesCfg

Cfg returns the Ses's cfg.

func (*Ses) Close

func (ses *Ses) Close() (err error)

Close ends a session on an Oracle server.

Any open statements associated with the session are closed.

Calling Close will cause Ses.IsOpen to return false. Once closed, a session cannot be re-opened. Call Srv.OpenSes to open a new session.

func (*Ses) Ins

func (ses *Ses) Ins(tbl string, columnPairs ...interface{}) (err error)

Ins composes, prepares and executes a sql INSERT statement returning a possible error.

Ins offers convenience when specifying a long list of sql columns.

Ins expects at least two column name-value pairs where the last pair will be a part of a sql RETURNING clause. The last column name is expected to be an identity column returning an Oracle-generated value. The last value specified to the variadic parameter 'columnPairs' is expected to be a pointer capable of receiving the identity value.

Example
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()
tableName := tableName()
ident := "DEFAULT 1"
if ver, _ := srv.Version(); strings.Contains(ver, " 12.") {
	ident = "GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1)"
}
ses.PrepAndExe(fmt.Sprintf("CREATE TABLE %v "+
	"(C1 NUMBER(20,0) "+ident+", C2 NUMBER(20,10), C3 NUMBER(20,10), "+
	"C4 NUMBER(20,10), C5 NUMBER(20,10), C6 NUMBER(20,10), "+
	"C7 NUMBER(20,10), C8 NUMBER(20,10), C9 NUMBER(20,10), "+
	"C10 NUMBER(20,10), C11 NUMBER(20,10), C12 NUMBER(20,10), "+
	"C13 NUMBER(20,10), C14 NUMBER(20,10), C15 NUMBER(20,10), "+
	"C16 NUMBER(20,10), C17 NUMBER(20,10), C18 NUMBER(20,10), "+
	"C19 NUMBER(20,10), C20 NUMBER(20,10), C21 NUMBER(20,10))", tableName))
e := &testEntity{}
e.C2 = 2.2
e.C3 = 3
e.C4 = 4
e.C5 = 5
e.C6 = 6
e.C7 = 7
e.C8 = 8
e.C9 = 9
e.C10 = 10
e.C11 = 11.11
e.C12 = 12.12
e.C13 = 13
e.C14 = 14
e.C15 = 15
e.C16 = 16
e.C17 = 17
e.C18 = 18
e.C19 = 19
e.C20 = 20
e.C21 = 21.21
ses.Ins(tableName,
	"C2", e.C2,
	"C3", e.C3,
	"C4", e.C4,
	"C5", e.C5,
	"C6", e.C6,
	"C7", e.C7,
	"C8", e.C8,
	"C9", e.C9,
	"C10", e.C10,
	"C11", e.C11,
	"C12", e.C12,
	"C13", e.C13,
	"C14", e.C14,
	"C15", e.C15,
	"C16", e.C16,
	"C17", e.C17,
	"C18", e.C18,
	"C19", e.C19,
	"C20", e.C20,
	"C21", e.C21,
	"C1", &e.C1)
fmt.Println(e.C1)
Output:

1

func (*Ses) IsOpen

func (ses *Ses) IsOpen() bool

IsOpen returns true when a session is open; otherwise, false.

Calling Close will cause Ses.IsOpen to return false. Once closed, a session cannot be re-opened. Call Srv.OpenSes to open a new session.

func (*Ses) NumStmt

func (ses *Ses) NumStmt() int

NumStmt returns the number of open Oracle statements.

func (*Ses) NumTx

func (ses *Ses) NumTx() int

NumTx returns the number of open Oracle transactions.

func (*Ses) Prep

func (ses *Ses) Prep(sql string, gcts ...GoColumnType) (stmt *Stmt, err error)

Prep prepares a sql statement returning a *Stmt and possible error.

func (*Ses) PrepAndExe

func (ses *Ses) PrepAndExe(sql string, params ...interface{}) (rowsAffected uint64, err error)

PrepAndExe prepares and executes a SQL statement returning the number of rows affected and a possible error.

Example
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, err := env.OpenSrv(testSrvCfg)
if err != nil {
	fmt.Fprintf(os.Stderr, "cannot connect to %q: %v", dbName(), err)
	return
}
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()
tableName := tableName()
ses.PrepAndExe(fmt.Sprintf("CREATE TABLE %v (C1 NUMBER)", tableName))
rowsAffected, _ := ses.PrepAndExe(fmt.Sprintf("INSERT INTO %v (C1) VALUES (3)", tableName))
fmt.Println(rowsAffected)
Output:

1

func (*Ses) PrepAndQry

func (ses *Ses) PrepAndQry(sql string, params ...interface{}) (rset *Rset, err error)

PrepAndQry prepares a SQL statement and queries an Oracle server returning an *Rset and a possible error.

If an error occurs during Prep or Qry a nil *Rset will be returned.

The *Stmt internal to this method is automatically closed when the *Rset retrieves all rows or returns an error.

Example
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()
tableName := tableName()
ses.PrepAndExe(fmt.Sprintf("CREATE TABLE %v (C1 NUMBER)", tableName))
ses.PrepAndExe(fmt.Sprintf("INSERT INTO %v (C1) VALUES (3)", tableName))
rset, _ := ses.PrepAndQry(fmt.Sprintf("SELECT C1 FROM %v", tableName))
row := rset.NextRow()
fmt.Println(row[0])
Output:

3

func (*Ses) Sel

func (ses *Ses) Sel(sqlFrom string, columnPairs ...interface{}) (rset *Rset, err error)

Sel composes, prepares and queries a sql SELECT statement returning an *ora.Rset and possible error.

Sel offers convenience when specifying a long list of sql columns with non-default GoColumnTypes.

Specify a sql FROM clause with one or more pairs of sql column name-GoColumnType pairs. The FROM clause may have additional SQL clauses such as WHERE, HAVING, etc.

Example
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ident := "DEFAULT 1"
if ver, _ := srv.Version(); strings.Contains(ver, " 12.") {
	ident = " GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1)"
}
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()
tableName := tableName()
ses.PrepAndExe(fmt.Sprintf("CREATE TABLE %v "+
	"(C1 NUMBER(20,0) "+ident+","+
	"C2 NUMBER(20,10), C3 NUMBER(20,10), "+
	"C4 NUMBER(20,10), C5 NUMBER(20,10), C6 NUMBER(20,10), "+
	"C7 NUMBER(20,10), C8 NUMBER(20,10), C9 NUMBER(20,10), "+
	"C10 NUMBER(20,10), C11 NUMBER(20,10), C12 NUMBER(20,10), "+
	"C13 NUMBER(20,10), C14 NUMBER(20,10), C15 NUMBER(20,10), "+
	"C16 NUMBER(20,10), C17 NUMBER(20,10), C18 NUMBER(20,10), "+
	"C19 NUMBER(20,10), C20 NUMBER(20,10), C21 NUMBER(20,10))", tableName))
e := &testEntity{}
e.C2 = 2.2
e.C3 = 3
e.C4 = 4
e.C5 = 5
e.C6 = 6
e.C7 = 7
e.C8 = 8
e.C9 = 9
e.C10 = 10
e.C11 = 11.11
e.C12 = 12.12
e.C13 = 13
e.C14 = 14
e.C15 = 15
e.C16 = 16
e.C17 = 17
e.C18 = 18
e.C19 = 19
e.C20 = 20
e.C21 = 21.21
ses.Ins(tableName,
	"C2", e.C2,
	"C3", e.C3,
	"C4", e.C4,
	"C5", e.C5,
	"C6", e.C6,
	"C7", e.C7,
	"C8", e.C8,
	"C9", e.C9,
	"C10", e.C10,
	"C11", e.C11,
	"C12", e.C12,
	"C13", e.C13,
	"C14", e.C14,
	"C15", e.C15,
	"C16", e.C16,
	"C17", e.C17,
	"C18", e.C18,
	"C19", e.C19,
	"C20", e.C20,
	"C21", e.C21,
	"C1", &e.C1)
rset, _ := ses.Sel(tableName,
	"C1", ora.U64,
	"C2", ora.F64,
	"C3", ora.I8,
	"C4", ora.I16,
	"C5", ora.I32,
	"C6", ora.I64,
	"C7", ora.U8,
	"C8", ora.U16,
	"C9", ora.U32,
	"C10", ora.U64,
	"C11", ora.F32,
	"C12", ora.F64,
	"C13", ora.I8,
	"C14", ora.I16,
	"C15", ora.I32,
	"C16", ora.I64,
	"C17", ora.U8,
	"C18", ora.U16,
	"C19", ora.U32,
	"C20", ora.U64,
	"C21", ora.F32)
for rset.Next() {
	for n := 0; n < len(rset.Row); n++ {
		fmt.Printf("R%v %v\n", n, rset.Row[n])
	}
}
Output:

R0 1
R1 2.2
R2 3
R3 4
R4 5
R5 6
R6 7
R7 8
R8 9
R9 10
R10 11.11
R11 12.120000000000001
R12 13
R13 14
R14 15
R15 16
R16 17
R17 18
R18 19
R19 20
R20 21.21

func (*Ses) SetCfg

func (ses *Ses) SetCfg(cfg SesCfg)

SetCfg applies the specified cfg to the Ses.

Open Stmts do not observe the specified cfg.

func (*Ses) StartTx

func (ses *Ses) StartTx() (tx *Tx, err error)

StartTx starts an Oracle transaction returning a *Tx and possible error.

func (*Ses) Upd

func (ses *Ses) Upd(tbl string, columnPairs ...interface{}) (err error)

Upd composes, prepares and executes a sql UPDATE statement returning a possible error.

Upd offers convenience when specifying a long list of sql columns.

Example
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()
tableName := tableName()
ident := "DEFAULT 1"
if ver, _ := srv.Version(); strings.Contains(ver, " 12.") {
	ident = "GENERATED ALWAYS AS IDENTITY (START WITH 1 INCREMENT BY 1)"
}
ses.PrepAndExe(fmt.Sprintf("CREATE TABLE %v "+
	"(C1 NUMBER(20,0) "+ident+", C2 NUMBER(20,10), C3 NUMBER(20,10), "+
	"C4 NUMBER(20,10), C5 NUMBER(20,10), C6 NUMBER(20,10), "+
	"C7 NUMBER(20,10), C8 NUMBER(20,10), C9 NUMBER(20,10), "+
	"C10 NUMBER(20,10), C11 NUMBER(20,10), C12 NUMBER(20,10), "+
	"C13 NUMBER(20,10), C14 NUMBER(20,10), C15 NUMBER(20,10), "+
	"C16 NUMBER(20,10), C17 NUMBER(20,10), C18 NUMBER(20,10), "+
	"C19 NUMBER(20,10), C20 NUMBER(20,10), C21 NUMBER(20,10))", tableName))
e := &testEntity{}
e.C2 = 2.2
e.C3 = 3
e.C4 = 4
e.C5 = 5
e.C6 = 6
e.C7 = 7
e.C8 = 8
e.C9 = 9
e.C10 = 10
e.C11 = 11.11
e.C12 = 12.12
e.C13 = 13
e.C14 = 14
e.C15 = 15
e.C16 = 16
e.C17 = 17
e.C18 = 18
e.C19 = 19
e.C20 = 20
e.C21 = 21.21
ses.Ins(tableName,
	"C2", e.C2,
	"C3", e.C3,
	"C4", e.C4,
	"C5", e.C5,
	"C6", e.C6,
	"C7", e.C7,
	"C8", e.C8,
	"C9", e.C9,
	"C10", e.C10,
	"C11", e.C11,
	"C12", e.C12,
	"C13", e.C13,
	"C14", e.C14,
	"C15", e.C15,
	"C16", e.C16,
	"C17", e.C17,
	"C18", e.C18,
	"C19", e.C19,
	"C20", e.C20,
	"C21", e.C21,
	"C1", &e.C1)
err := ses.Upd(tableName,
	"C2", e.C2*2,
	"C3", e.C3*2,
	"C4", e.C4*2,
	"C5", e.C5*2,
	"C6", e.C6*2,
	"C7", e.C7*2,
	"C8", e.C8*2,
	"C9", e.C9*2,
	"C10", e.C10*2,
	"C11", e.C11*2,
	"C12", e.C12*2,
	"C13", e.C13*2,
	"C14", e.C14*2,
	"C15", e.C15*2,
	"C16", e.C16*2,
	"C17", e.C17*2,
	"C18", e.C18*2,
	"C19", e.C19*2,
	"C20", e.C20*2,
	"C21", e.C21*2,
	"C1", e.C1)
if err == nil {
	fmt.Println("success")
}
Output:

success

type SesCfg

type SesCfg struct {
	Username string
	Password string
	StmtCfg  *StmtCfg
}

func NewSesCfg

func NewSesCfg() *SesCfg

NewSrvCfg creates a SrvCfg with default values.

type Srv

type Srv struct {
	// contains filtered or unexported fields
}

Srv represents an Oracle server.

func (*Srv) Break

func (srv *Srv) Break() (err error)

Break the currently running OCI function.

func (*Srv) Cfg

func (srv *Srv) Cfg() *SrvCfg

Cfg returns the Srv's cfg.

func (*Srv) Close

func (srv *Srv) Close() (err error)

Close disconnects from an Oracle server.

Any open sessions associated with the server are closed.

Calling Close will cause Srv.IsOpen to return false. Once closed, a server cannot be re-opened. Call Env.OpenSrv to open a new server.

func (*Srv) IsOpen

func (srv *Srv) IsOpen() bool

IsOpen returns true when the server is open; otherwise, false.

Calling Close will cause Srv.IsOpen to return false. Once closed, a server cannot be re-opened. Call Env.OpenSrv to open a new server.

func (*Srv) NumSes

func (srv *Srv) NumSes() int

NumSes returns the number of open Oracle sessions.

func (*Srv) OpenSes

func (srv *Srv) OpenSes(cfg *SesCfg) (ses *Ses, err error)

OpenSes opens an Oracle session returning a *Ses and possible error.

func (*Srv) Ping

func (srv *Srv) Ping() (err error)

Ping return nil when an Oracle server is contacted; otherwise, an error.

Ping requires the server have at least one open session.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()

// open a session before calling Ping
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

err := srv.Ping()
if err == nil {
	fmt.Println("Ping successful")
}
Output:

Ping successful

func (*Srv) SetCfg

func (srv *Srv) SetCfg(cfg SrvCfg)

SetCfg applies the specified cfg to the Srv.

Open Sess do not observe the specified cfg.

func (*Srv) Version

func (srv *Srv) Version() (ver string, err error)

Version returns the Oracle database server version.

Version requires the server have at least one open session.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()

// open a session before calling Version
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

version, err := srv.Version()
if version != "" && err == nil {
	fmt.Println("Received version from server")
}
Output:

Received version from server

type SrvCfg

type SrvCfg struct {
	// Dblink specifies an Oracle database server. Dblink is a connect string
	// or a service point.
	Dblink string

	// StmtCfg configures new Stmts.
	StmtCfg *StmtCfg
}

SrvCfg configures a new Srv.

func NewSrvCfg

func NewSrvCfg() *SrvCfg

NewSrvCfg creates a SrvCfg with default values.

type Stmt

type Stmt struct {
	// contains filtered or unexported fields
}

Stmt represents an Oracle statement.

func (*Stmt) Cfg

func (stmt *Stmt) Cfg() *StmtCfg

Cfg returns the Stmt's cfg.

func (*Stmt) Close

func (stmt *Stmt) Close() (err error)

Close closes the SQL statement.

Calling Close will cause Stmt.IsOpen to return false. Once closed, a statement cannot be re-opened. Call Stmt.Prep to create a new statement.

func (*Stmt) Exe

func (stmt *Stmt) Exe(params ...interface{}) (rowsAffected uint64, err error)

Exe executes a SQL statement on an Oracle server returning the number of rows affected and a possible error.

Example (Delete)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number)", tableName))
defer stmt.Close()
stmt.Exe()
// insert record
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (9)", tableName))
defer stmt.Close()
stmt.Exe()

// delete record
var value int64 = 9
stmt, _ = ses.Prep(fmt.Sprintf("delete from %v where c1 = :1", tableName))
defer stmt.Close()
rowsAffected, _ := stmt.Exe(value)
fmt.Println(rowsAffected)
Output:

1
Example (Insert)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number)", tableName))
defer stmt.Close()
stmt.Exe()

// insert record
var value int64 = 9
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
rowsAffected, _ := stmt.Exe(value)
fmt.Println(rowsAffected)
Output:

1
Example (Insert_fetch_blob)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 blob)", tableName))
defer stmt.Close()
stmt.Exe()

// by default, byte slices are expected to be bound and retrieved
// to/from a binary column such as a blob
// insert record
a := make([]byte, 10)
for n, _ := range a {
	a[n] = byte(n)
}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
rowsAffected, _ := stmt.Exe(a)
fmt.Println(rowsAffected)

// fetch record
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName))
defer stmt.Close()
rset, _ := stmt.Qry()
row := rset.NextRow()
b, err := ioutil.ReadAll(row[0].(io.Reader))
if err != nil {
	fmt.Printf("ERROR: %v", err)
} else {
	fmt.Println(b)
}
Output:

1
[0 1 2 3 4 5 6 7 8 9]
Example (Insert_fetch_bool)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 char(1 byte))", tableName))
defer stmt.Close()
stmt.Exe()

// insert 'false' record
var falseValue bool = false
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(falseValue)
// insert 'true' record
var trueValue bool = true
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(trueValue)

// fetch inserted records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName))
defer stmt.Close()
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Printf("%v ", rset.Row[0])
}
Output:

false true
Example (Insert_fetch_bool_alternate)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 char(1 byte))", tableName))
defer stmt.Close()
stmt.Exe()

// Update StmtCfg to change the FalseRune and TrueRune inserted into the database
// insert 'false' record
var falseValue bool = false
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmtCfg := stmt.Cfg()
stmtCfg.FalseRune = 'N'
stmt.Exe(falseValue)
// insert 'true' record
var trueValue bool = true
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmtCfg.TrueRune = 'Y'
stmt.Exe(trueValue)

// Update RsetCfg to change the TrueRune
// used to translate an Oracle char to a Go bool
// fetch inserted records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName))
defer stmt.Close()
stmtCfg.Rset.TrueRune = 'Y'
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Printf("%v ", rset.Row[0])
}
Output:

false true
Example (Insert_fetch_byteSlice)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// note the NUMBER column
// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number)", tableName))
defer stmt.Close()
stmt.Exe()

// Specify stmt.Cfg.SetByteSlice(U8)
// Specify byte slice to be inserted into a NUMBER column
// insert records
a := make([]byte, 10)
for n, _ := range a {
	a[n] = byte(n)
}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmtCfg := stmt.Cfg()
stmtCfg.SetByteSlice(ora.U8)
rowsAffected, _ := stmt.Exe(a)
fmt.Println(rowsAffected)

// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName))
defer stmt.Close()
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Printf("%v, ", rset.Row[0])
}
Output:

10
0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
Example (Insert_nullable)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number, c2 varchar2(48 char), c3 char(1 byte))", tableName))
defer stmt.Close()
stmt.Exe()

// create nullable Go types for inserting null
// insert record
a := ora.Int64{IsNull: true}
b := ora.String{IsNull: true}
c := ora.Bool{IsNull: true}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1, c2, c3) values (:c1, :c2, :c3)", tableName))
defer stmt.Close()
rowsAffected, _ := stmt.Exe(a, b, c)
fmt.Println(rowsAffected)
Output:

1
Example (Insert_return_identity)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
qry := "create table " + tableName + " (c1 number(19,0)"
if ver, _ := srv.Version(); strings.Contains(ver, " 12.") {
	qry += " generated always as identity (start with 1 increment by 1)"
} else {
	qry += " default 1"
}
qry += ", c2 varchar2(48 char))"
stmt, _ := ses.Prep(qry)
defer stmt.Close()
stmt.Exe()

// insert record
var id int64
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c2) values ('go') returning c1 into :c1", tableName))
defer stmt.Close()
// pass a numeric pointer to rereive a database generated identity value
stmt.Exe(&id)
fmt.Println(id)
Output:

1
Example (Insert_return_rowid)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number)", tableName))
defer stmt.Close()
stmt.Exe()

// insert record
var rowid string
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (9) returning rowid into :r", tableName))
defer stmt.Close()
// pass a string pointer to rereive a rowid
stmt.Exe(&rowid)
if rowid != "" {
	fmt.Println("Retrieved rowid")
}
Output:

Retrieved rowid
Example (Insert_slice)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number)", tableName))
defer stmt.Close()
stmt.Exe()

// insert one million rows with single round-trip to server
values := make([]int64, 1000000)
for n, _ := range values {
	values[n] = int64(n)
}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
rowsAffected, _ := stmt.Exe(values)
fmt.Println(rowsAffected)
Output:

1000000
Example (Update)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number)", tableName))
defer stmt.Close()
stmt.Exe()
// insert record
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (9)", tableName))
defer stmt.Close()
stmt.Exe()

// update record
var a int64 = 3
var b int64 = 9
stmt, _ = ses.Prep(fmt.Sprintf("update %v set c1 = :three where c1 = :nine", tableName))
defer stmt.Close()
rowsAffected, _ := stmt.Exe(a, b)
fmt.Println(rowsAffected)
Output:

1

func (*Stmt) Gcts

func (stmt *Stmt) Gcts() []GoColumnType

Gcts returns a slice of GoColumnType specified by Ses.Prep or Stmt.SetGcts.

Gcts is used by a Stmt.Qry *ora.Rset to determine which Go types are mapped to a sql select-list.

func (*Stmt) IsOpen

func (stmt *Stmt) IsOpen() bool

IsOpen returns true when a statement is open; otherwise, false.

Calling Close will cause Stmt.IsOpen to return false. Once closed, a statement cannot be re-opened. Call Stmt.Prep to create a new statement.

func (*Stmt) NumInput

func (stmt *Stmt) NumInput() int

NumInput returns the number of placeholders in a sql statement.

func (*Stmt) NumRset

func (stmt *Stmt) NumRset() int

NumRset returns the number of open Oracle result sets.

func (*Stmt) Qry

func (stmt *Stmt) Qry(params ...interface{}) (*Rset, error)

Qry runs a SQL query on an Oracle server returning a *Rset and possible error.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number, c2 varchar2(48 char), c3 char(1 byte))", tableName))
defer stmt.Close()
stmt.Exe()
// insert record
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1, c2, c3) values (3, 'slice', '0')", tableName))
defer stmt.Close()
stmt.Exe()
// insert record
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1, c2, c3) values (7, 'map', '1')", tableName))
defer stmt.Close()
stmt.Exe()
// insert record
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1, c2, c3) values (9, 'channel', '1')", tableName))
defer stmt.Close()
stmt.Exe()

// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1, c2, c3 from %v", tableName))
defer stmt.Close()
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Printf("%v %v %v, ", rset.Row[0], rset.Row[1], rset.Row[2])
}
Output:

3 slice false, 7 map true, 9 channel true,
Example (Nullable)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number, c2 varchar2(48 char), c3 char(1 byte))", tableName))
defer stmt.Close()
stmt.Exe()
// insert record
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1, c2, c3) values (null, 'slice', '0')", tableName))
defer stmt.Close()
stmt.Exe()
// insert record
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1, c2, c3) values (7, null, '1')", tableName))
defer stmt.Close()
stmt.Exe()
// insert record
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1, c2, c3) values (9, 'channel', null)", tableName))
defer stmt.Close()
stmt.Exe()

// Specify nullable return types to the Prep method
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1, c2, c3 from %v", tableName), ora.OraI64, ora.OraS, ora.OraB)
defer stmt.Close()
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Printf("%v %v %v, ", rset.Row[0], rset.Row[1], rset.Row[2])
}
Output:

{true 0} {false slice} {false false}, {false 7} {true } {false true}, {false 9} {false channel} {true false},
Example (Numerics)
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number)", tableName))
defer stmt.Close()
stmt.Exe()
// insert record
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (9)", tableName))
defer stmt.Close()
stmt.Exe()

// Specify various numeric return types to the Prep method
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1, c1, c1, c1, c1, c1, c1, c1, c1, c1 from %v", tableName), ora.I64, ora.I32, ora.I16, ora.I8, ora.U64, ora.U32, ora.U16, ora.U8, ora.F64, ora.F32)
defer stmt.Close()
rset, _ := stmt.Qry()
row := rset.NextRow()
fmt.Printf("%v %v %v %v %v %v %v %v %v %v",
	reflect.TypeOf(row[0]).Name(),
	reflect.TypeOf(row[1]).Name(),
	reflect.TypeOf(row[2]).Name(),
	reflect.TypeOf(row[3]).Name(),
	reflect.TypeOf(row[4]).Name(),
	reflect.TypeOf(row[5]).Name(),
	reflect.TypeOf(row[6]).Name(),
	reflect.TypeOf(row[7]).Name(),
	reflect.TypeOf(row[8]).Name(),
	reflect.TypeOf(row[9]).Name())
Output:

int64 int32 int16 int8 uint64 uint32 uint16 uint8 float64 float32

func (*Stmt) SetCfg

func (stmt *Stmt) SetCfg(cfg *StmtCfg)

SetCfg applies the specified cfg to the Stmt.

Open Rsets do not observe the specified cfg.

func (*Stmt) SetGcts

func (stmt *Stmt) SetGcts(gcts []GoColumnType) []GoColumnType

SetGcts sets a slice of GoColumnType used in a Stmt.Qry *ora.Rset.

SetGcts is optional.

type StmtCfg

type StmtCfg struct {

	// IsAutoCommitting determines whether DML statements are automatically
	// committed.
	//
	// The default is true.
	//
	// IsAutoCommitting is not observed during a transaction.
	IsAutoCommitting bool

	// FalseRune represents the false Go bool value sent to an Oracle server
	// during a parameter bind.
	//
	// The is default is '0'.
	FalseRune rune

	// TrueRune represents the true Go bool value sent to an Oracle server
	// during a parameter bind.
	//
	// The is default is '1'.
	TrueRune rune

	// Rset represents configuration options for an Rset struct.
	Rset RsetCfg
	// contains filtered or unexported fields
}

StmtCfg affects various aspects of a SQL statement.

Assign values to StmtCfg prior to calling Stmt.Exe and Stmt.Qry for the configuration values to take effect.

func NewStmtCfg

func NewStmtCfg() *StmtCfg

NewStmtCfg returns a StmtCfg with default values.

func (*StmtCfg) ByteSlice

func (c *StmtCfg) ByteSlice() GoColumnType

ByteSlice returns a GoColumnType associated to SQL statement []byte parameter.

The default is Bits.

ByteSlice is used by the database/sql package.

Sending a byte slice to an Oracle server as a parameter in a SQL statement requires knowing the destination column type ahead of time. Set ByteSlice to Bits if the destination column is BLOB, RAW or LONG RAW. Set ByteSlice to U8 if the destination column is NUMBER, BINARY_DOUBLE, BINARY_FLOAT or FLOAT.

func (*StmtCfg) LobBufferSize

func (c *StmtCfg) LobBufferSize() int

LobBufferSize returns the LOB buffer size in bytes used to define the sql select-column buffer size of an Oracle LOB type.

The default is 16,777,216 bytes.

The default is considered a moderate buffer where the 2GB max buffer may not be feasible on all clients.

func (*StmtCfg) LongBufferSize

func (c *StmtCfg) LongBufferSize() uint32

LongBufferSize returns the long buffer size in bytes used to define the sql select-column buffer size of an Oracle LONG type.

The default is 16,777,216 bytes.

The default is considered a moderate buffer where the 2GB max buffer may not be feasible on all clients.

func (*StmtCfg) LongRawBufferSize

func (c *StmtCfg) LongRawBufferSize() uint32

LongRawBufferSize returns the LONG RAW buffer size in bytes used to define the sql select-column buffer size of an Oracle LONG RAW type.

The default is 16,777,216 bytes.

The default is considered a moderate buffer where the 2GB max buffer may not be feasible on all clients.

func (*StmtCfg) PrefetchMemorySize

func (c *StmtCfg) PrefetchMemorySize() uint32

PrefetchMemorySize returns the prefetch memory size in bytes used during a SQL select command.

The default is 134,217,728 bytes.

PrefetchMemorySize works in coordination with PrefetchRowCount. When PrefetchRowCount is set to zero only PrefetchMemorySize is used; otherwise, the minimum of PrefetchRowCount and PrefetchMemorySize is used.

func (*StmtCfg) PrefetchRowCount

func (c *StmtCfg) PrefetchRowCount() uint32

PrefetchRowCount returns the number of rows to prefetch during a select query.

The default is 0.

PrefetchRowCount works in coordination with PrefetchMemorySize. When PrefetchRowCount is set to zero only PrefetchMemorySize is used; otherwise, the minimum of PrefetchRowCount and PrefetchMemorySize is used.

func (*StmtCfg) SetByteSlice

func (c *StmtCfg) SetByteSlice(gct GoColumnType) (err error)

SetByteSlice sets a GoColumnType associated to SQL statement []byte parameter.

Valid values are U8 and Bits.

Returns an error if U8 or Bits is not specified.

func (*StmtCfg) SetLobBufferSize

func (c *StmtCfg) SetLobBufferSize(size int) error

SetLobBufferSize sets the LOB buffer size in bytes.

The maximum is 2,147,483,642 bytes.

Returns an error if the specified size is greater than 2,147,483,642.

func (*StmtCfg) SetLongBufferSize

func (c *StmtCfg) SetLongBufferSize(size uint32) error

SetLongBufferSize sets the long buffer size in bytes.

The maximum is 2,147,483,642 bytes.

Returns an error if the specified size is less than 1 or greater than 2,147,483,642.

func (*StmtCfg) SetLongRawBufferSize

func (c *StmtCfg) SetLongRawBufferSize(size uint32) error

SetLongRawBufferSize sets the LONG RAW buffer size in bytes.

The maximum is 2,147,483,642 bytes.

Returns an error if the specified size is greater than 2,147,483,642.

func (*StmtCfg) SetPrefetchMemorySize

func (c *StmtCfg) SetPrefetchMemorySize(prefetchMemorySize uint32) error

SetPrefetchMemorySize sets the prefetch memory size in bytes used during a SQL select command.

func (*StmtCfg) SetPrefetchRowCount

func (c *StmtCfg) SetPrefetchRowCount(prefetchRowCount uint32) error

SetPrefetchRowCount sets the number of rows to prefetch during a select query.

func (*StmtCfg) SetStringPtrBufferSize

func (c *StmtCfg) SetStringPtrBufferSize(size int) error

SetStringPtrBufferSize sets the size of a buffer used to store a string during *string parameter binding and []*string parameter binding in a SQL statement.

func (*StmtCfg) StringPtrBufferSize

func (c *StmtCfg) StringPtrBufferSize() int

StringPtrBufferSize returns the size of a buffer in bytes used to store a string during *string parameter binding and []*string parameter binding in a SQL statement.

The default is 4000 bytes.

For a *string parameter binding, you may wish to increase the size of StringPtrBufferSize depending on the Oracle column type. For VARCHAR2, NVARCHAR2, and RAW oracle columns the Oracle MAX_STRING_SIZE is usually 4000 but may be set up to 32767.

type String

type String struct {
	IsNull bool
	Value  string
}

String is a nullable string.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 varchar2(48 char))", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.String slice
a := make([]ora.String, 5)
a[0] = ora.String{Value: "Go is expressive, concise, clean, and efficient."}
a[1] = ora.String{Value: "Its concurrency mechanisms make it easy to"}
a[2] = ora.String{IsNull: true}
a[3] = ora.String{Value: "It's a fast, statically typed, compiled"}
a[4] = ora.String{Value: "One of Go's key design goals is code"}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraS to Prep method to return nullable ora.String values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraS)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

{false Go is expressive, concise, clean, and efficient.}
{false Its concurrency mechanisms make it easy to}
{true }
{false It's a fast, statically typed, compiled}
{false One of Go's key design goals is code}

func (String) Equals

func (this String) Equals(other String) bool

Equals returns true when the receiver and specified String are both null, or when the receiver and specified String are both not null and Values are equal.

type Time

type Time struct {
	IsNull bool
	Value  time.Time
}

Time is a nullable time.Time.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 timestamp)", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Time slice
a := make([]ora.Time, 5)
a[0] = ora.Time{Value: time.Date(2000, 1, 2, 3, 4, 5, 0, testDbsessiontimezone)}
a[1] = ora.Time{Value: time.Date(2001, 2, 3, 4, 5, 6, 0, testDbsessiontimezone)}
a[2] = ora.Time{IsNull: true}
a[3] = ora.Time{Value: time.Date(2003, 4, 5, 6, 7, 8, 0, testDbsessiontimezone)}
a[4] = ora.Time{Value: time.Date(2004, 5, 6, 7, 8, 9, 0, testDbsessiontimezone)}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraT to Prep method to return nullable ora.Time values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraT)
rset, _ := stmt.Qry()
for rset.Next() {
	t := rset.Row[0].(ora.Time)
	fmt.Printf("%v %v-%v-%v %v:%v:%v\n", t.IsNull, t.Value.Year(), t.Value.Month(), t.Value.Day(), t.Value.Hour(), t.Value.Minute(), t.Value.Second())
}
Output:

false 2000-January-2 3:4:5
false 2001-February-3 4:5:6
true 1-January-1 0:0:0
false 2003-April-5 6:7:8
false 2004-May-6 7:8:9

func (Time) Equals

func (this Time) Equals(other Time) bool

Equals returns true when the receiver and specified Time are both null, or when the receiver and specified Time are both not null and Values are equal.

type Tx

type Tx struct {
	// contains filtered or unexported fields
}

Tx represents an Oracle transaction associated with a session.

Implements the driver.Tx interface.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number)", tableName))
defer stmt.Close()
stmt.Exe()

// rollback
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (3)", tableName))
tx, _ := ses.StartTx()
stmt.Exe()
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (5)", tableName))
stmt.Exe()
tx.Rollback()

// commit
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (7)", tableName))
tx, _ = ses.StartTx()
stmt.Exe()
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (9)", tableName))
stmt.Exe()
tx.Commit()

// check that auto commit is reenabled
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (11)", tableName))
stmt.Exe()

// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName))
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

7
9
11

func (*Tx) Commit

func (tx *Tx) Commit() (err error)

Commit commits the transaction.

Commit is a member of the driver.Tx interface.

func (*Tx) Rollback

func (tx *Tx) Rollback() (err error)

Rollback rolls back a transaction.

Rollback is a member of the driver.Tx interface.

type Uint16

type Uint16 struct {
	IsNull bool
	Value  uint16
}

Uint16 is a nullable uint16.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number(10,0))", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Uint16 slice
a := make([]ora.Uint16, 5)
a[0] = ora.Uint16{Value: 0}
a[1] = ora.Uint16{Value: 3}
a[2] = ora.Uint16{IsNull: true}
a[3] = ora.Uint16{Value: 7}
a[4] = ora.Uint16{Value: 9}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraU16 to Prep method to return nullable ora.Uint16 values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraU16)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

{false 0}
{false 3}
{true 0}
{false 7}
{false 9}

func (Uint16) Equals

func (this Uint16) Equals(other Uint16) bool

Equals returns true when the receiver and specified Uint16 are both null, or when the receiver and specified Uint16 are both not null and Values are equal.

type Uint32

type Uint32 struct {
	IsNull bool
	Value  uint32
}

Uint32 is a nullable uint32.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number(10,0))", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Uint32 slice
a := make([]ora.Uint32, 5)
a[0] = ora.Uint32{Value: 0}
a[1] = ora.Uint32{Value: 3}
a[2] = ora.Uint32{IsNull: true}
a[3] = ora.Uint32{Value: 7}
a[4] = ora.Uint32{Value: 9}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraU32 to Prep method to return nullable ora.Uint32 values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraU32)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

{false 0}
{false 3}
{true 0}
{false 7}
{false 9}

func (Uint32) Equals

func (this Uint32) Equals(other Uint32) bool

Equals returns true when the receiver and specified Uint32 are both null, or when the receiver and specified Uint32 are both not null and Values are equal.

type Uint64

type Uint64 struct {
	IsNull bool
	Value  uint64
}

Uint64 is a nullable uint64.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number(10,0))", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Uint64 slice
a := make([]ora.Uint64, 5)
a[0] = ora.Uint64{Value: 0}
a[1] = ora.Uint64{Value: 3}
a[2] = ora.Uint64{IsNull: true}
a[3] = ora.Uint64{Value: 7}
a[4] = ora.Uint64{Value: 9}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraU64 to Prep method to return nullable ora.Uint64 values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraU64)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

{false 0}
{false 3}
{true 0}
{false 7}
{false 9}

func (Uint64) Equals

func (this Uint64) Equals(other Uint64) bool

Equals returns true when the receiver and specified Uint64 are both null, or when the receiver and specified Uint64 are both not null and Values are equal.

type Uint8

type Uint8 struct {
	IsNull bool
	Value  uint8
}

Uint8 is a nullable uint8.

Example
// setup
env, _ := ora.OpenEnv(nil)
defer env.Close()
srv, _ := env.OpenSrv(testSrvCfg)
defer srv.Close()
ses, _ := srv.OpenSes(testSesCfg)
defer ses.Close()

// create table
tableName := tableName()
stmt, _ := ses.Prep(fmt.Sprintf("create table %v (c1 number(10,0))", tableName))
defer stmt.Close()
stmt.Exe()

// insert ora.Uint8 slice
a := make([]ora.Uint8, 5)
a[0] = ora.Uint8{Value: 0}
a[1] = ora.Uint8{Value: 3}
a[2] = ora.Uint8{IsNull: true}
a[3] = ora.Uint8{Value: 7}
a[4] = ora.Uint8{Value: 9}
stmt, _ = ses.Prep(fmt.Sprintf("insert into %v (c1) values (:c1)", tableName))
defer stmt.Close()
stmt.Exe(a)

// Specify ora.OraU8 to Prep method to return nullable ora.Uint8 values
// fetch records
stmt, _ = ses.Prep(fmt.Sprintf("select c1 from %v", tableName), ora.OraU8)
rset, _ := stmt.Qry()
for rset.Next() {
	fmt.Println(rset.Row[0])
}
Output:

{false 0}
{false 3}
{true 0}
{false 7}
{false 9}

func (Uint8) Equals

func (this Uint8) Equals(other Uint8) bool

Equals returns true when the receiver and specified Uint8 are both null, or when the receiver and specified Uint8 are both not null and Values are equal.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL