Documentation ¶
Overview ¶
Package godror is a database/sql/driver for Oracle DB.
The connection string for the sql.Open("godror", connString) call can be the simple
login/password@sid [AS SYSDBA|AS SYSOPER]
type (with sid being the sexp returned by tnsping), or in the form of
ora://login:password@sid/? \ sysdba=0& \ sysoper=0& \ poolMinSessions=1& \ poolMaxSessions=1000& \ poolIncrement=1& \ connectionClass=POOLED& \ standaloneConnection=0& \ enableEvents=0& \ heterogeneousPool=0& \ prelim=0& \ poolWaitTimeout=5m& \ poolSessionMaxLifetime=1h& \ poolSessionTimeout=30s& \ timezone=Local& \ newPassword= \ onInit=ALTER+SESSION+SET+current_schema%3Dmy_schema
These are the defaults. Many advocate that a static session pool (min=max, incr=0) is better, with 1-10 sessions per CPU thread. See http://docs.oracle.com/cd/E82638_01/JJUCP/optimizing-real-world-performance.htm#JJUCP-GUID-BC09F045-5D80-4AF5-93F5-FEF0531E0E1D You may also use ConnectionParams to configure a connection.
If you specify connectionClass, that'll reuse the same session pool without the connectionClass, but will specify it on each session acquire. Thus you can cluster the session pool with classes, or use POOLED for DRCP.
For what can be used as "sid", see https://docs.oracle.com/en/database/oracle/oracle-database/19/netag/configuring-naming-methods.html#GUID-E5358DEA-D619-4B7B-A799-3D2F802500F1
Index ¶
- Constants
- Variables
- func CallbackSubscr(ctx unsafe.Pointer, message *C.dpiSubscrMessage)
- func ContextWithLog(ctx context.Context, logF func(...interface{}) error) context.Context
- func ContextWithTraceTag(ctx context.Context, tt TraceTag) context.Context
- func ContextWithUserPassw(ctx context.Context, user, password, connClass string) context.Context
- func EnableDbmsOutput(ctx context.Context, conn Execer) error
- func MapToSlice(qry string, metParam func(string) interface{}) (string, []interface{})
- func NamedToOrdered(qry string, namedParams map[string]interface{}) (string, []interface{})
- func NewConnector(name string, onInit func(driver.Conn) error) (driver.Connector, error)
- func NewSessionIniter(m map[string]string) func(driver.Conn) error
- func ReadDbmsOutput(ctx context.Context, w io.Writer, conn preparer) error
- func Timezone(ctx context.Context, ex Execer) (*time.Location, error)
- func WrapRows(ctx context.Context, q Querier, rset driver.Rows) (*sql.Rows, error)
- type Column
- type CompileError
- type Conn
- type ConnectionParams
- type Data
- func (d *Data) Get() interface{}
- func (d *Data) GetBool() bool
- func (d *Data) GetBytes() []byte
- func (d *Data) GetFloat32() float32
- func (d *Data) GetFloat64() float64
- func (d *Data) GetInt64() int64
- func (d *Data) GetIntervalDS() time.Duration
- func (d *Data) GetIntervalYM() IntervalYM
- func (d *Data) GetLob() *Lob
- func (d *Data) GetObject() *Object
- func (d *Data) GetStmt() driver.Stmt
- func (d *Data) GetTime() time.Time
- func (d *Data) GetUint64() uint64
- func (d *Data) IsNull() bool
- func (d *Data) IsObject() bool
- func (d *Data) Set(v interface{}) error
- func (d *Data) SetBool(b bool)
- func (d *Data) SetBytes(b []byte)
- func (d *Data) SetFloat32(f float32)
- func (d *Data) SetFloat64(f float64)
- func (d *Data) SetInt64(i int64)
- func (d *Data) SetIntervalDS(dur time.Duration)
- func (d *Data) SetIntervalYM(ym IntervalYM)
- func (d *Data) SetLob(lob *DirectLob)
- func (d *Data) SetNull()
- func (d *Data) SetObject(o *Object)
- func (d *Data) SetStmt(s *statement)
- func (d *Data) SetTime(t time.Time)
- func (d *Data) SetUint64(u uint64)
- type DeliveryMode
- type DeqMode
- type DeqNavigation
- type DeqOptions
- type DirectLob
- type Drv
- type EnqOptions
- type Event
- type EventType
- type Execer
- type IntervalYM
- type Lob
- type Message
- type MessageState
- type NullTime
- type Number
- func (n Number) MarshalJSON() ([]byte, error)
- func (n Number) MarshalText() ([]byte, error)
- func (n *Number) Scan(v interface{}) error
- func (n Number) String() string
- func (n *Number) UnmarshalJSON(p []byte) error
- func (n *Number) UnmarshalText(p []byte) error
- func (n Number) Value() (driver.Value, error)
- type Object
- func (O *Object) Close() error
- func (O *Object) Collection() ObjectCollection
- func (O *Object) Get(name string) (interface{}, error)
- func (O *Object) GetAttribute(data *Data, name string) error
- func (O *Object) ObjectRef() *Object
- func (O *Object) ResetAttributes() error
- func (O *Object) Set(name string, v interface{}) error
- func (O *Object) SetAttribute(name string, data *Data) error
- type ObjectAttribute
- type ObjectCollection
- func (O ObjectCollection) Append(v interface{}) error
- func (O ObjectCollection) AppendData(data *Data) error
- func (O ObjectCollection) AppendObject(obj *Object) error
- func (O ObjectCollection) AsSlice(dest interface{}) (interface{}, error)
- func (O ObjectCollection) Delete(i int) error
- func (O ObjectCollection) First() (int, error)
- func (O ObjectCollection) Get(i int) (interface{}, error)
- func (O ObjectCollection) GetItem(data *Data, i int) error
- func (O ObjectCollection) Last() (int, error)
- func (O ObjectCollection) Len() (int, error)
- func (O ObjectCollection) Next(i int) (int, error)
- func (O ObjectCollection) Set(i int, v interface{}) error
- func (O ObjectCollection) SetItem(i int, data *Data) error
- func (O ObjectCollection) Trim(n int) error
- type ObjectScanner
- type ObjectType
- type ObjectWriter
- type Operation
- type Option
- type OraErr
- type Querier
- type QueryColumn
- type QueryEvent
- type Queue
- func (Q *Queue) Close() error
- func (Q *Queue) DeqOptions() (DeqOptions, error)
- func (Q *Queue) Dequeue(messages []Message) (int, error)
- func (Q *Queue) EnqOptions() (EnqOptions, error)
- func (Q *Queue) Enqueue(messages []Message) error
- func (Q *Queue) Name() string
- func (Q *Queue) SetDeqCorrelation(correlation string) error
- func (Q *Queue) SetDeqOptions(D DeqOptions) error
- func (Q *Queue) SetEnqOptions(E EnqOptions) error
- type RowEvent
- type ShutdownMode
- type StartupMode
- type Subscription
- type TableEvent
- type TraceTag
- type VersionInfo
- type Visibility
Examples ¶
Constants ¶
const ( // StartupDefault is the default mode for startup which permits database access to all users. StartupDefault = StartupMode(C.DPI_MODE_STARTUP_DEFAULT) // StartupForce shuts down a running instance (using ABORT) before starting a new one. This mode should only be used in unusual circumstances. StartupForce = StartupMode(C.DPI_MODE_STARTUP_FORCE) // StartupRestrict only allows database access to users with both the CREATE SESSION and RESTRICTED SESSION privileges (normally the DBA). StartupRestrict = StartupMode(C.DPI_MODE_STARTUP_RESTRICT) )
const ( // ShutdownDefault - further connections to the database are prohibited. Wait for users to disconnect from the database. ShutdownDefault = ShutdownMode(C.DPI_MODE_SHUTDOWN_DEFAULT) // ShutdownTransactional - further connections to the database are prohibited and no new transactions are allowed to be started. Wait for active transactions to complete. ShutdownTransactional = ShutdownMode(C.DPI_MODE_SHUTDOWN_TRANSACTIONAL) // ShutdownTransactionalLocal - behaves the same way as ShutdownTransactional but only waits for local transactions to complete. ShutdownTransactionalLocal = ShutdownMode(C.DPI_MODE_SHUTDOWN_TRANSACTIONAL_LOCAL) // ShutdownImmediate - all uncommitted transactions are terminated and rolled back and all connections to the database are closed immediately. ShutdownImmediate = ShutdownMode(C.DPI_MODE_SHUTDOWN_IMMEDIATE) // ShutdownAbort - all uncommitted transactions are terminated and are not rolled back. This is the fastest way to shut down the database but the next database startup may require instance recovery. ShutdownAbort = ShutdownMode(C.DPI_MODE_SHUTDOWN_ABORT) // ShutdownFinal shuts down the database. This mode should only be used in the second call to dpiConn_shutdownDatabase(). ShutdownFinal = ShutdownMode(C.DPI_MODE_SHUTDOWN_FINAL) )
const ( // DefaultFetchRowCount is the number of prefetched rows by default (if not changed through FetchRowCount statement option). DefaultFetchRowCount = 1 << 8 // DefaultArraySize is the length of the maximum PL/SQL array by default (if not changed through ArraySize statement option). DefaultArraySize = 1 << 10 )
const ( // DpiMajorVersion is the wanted major version of the underlying ODPI-C library. DpiMajorVersion = C.DPI_MAJOR_VERSION // DpiMinorVersion is the wanted minor version of the underlying ODPI-C library. DpiMinorVersion = C.DPI_MINOR_VERSION // DpiPatchLevel is the patch level version of the underlying ODPI-C library DpiPatchLevel = C.DPI_PATCH_LEVEL // DpiVersionNumber is the underlying ODPI-C version as one number (Major * 10000 + Minor * 100 + Patch) DpiVersionNumber = C.DPI_VERSION_NUMBER // DriverName is set on the connection to be seen in the DB // // It cannot be longer than 30 bytes ! DriverName = "godror : " + Version // DefaultPoolMinSessions specifies the default value for minSessions for pool creation. DefaultPoolMinSessions = 1 // DefaultPoolMaxSessions specifies the default value for maxSessions for pool creation. DefaultPoolMaxSessions = 1000 // DefaultPoolIncrement specifies the default value for increment for pool creation. DefaultPoolIncrement = 1 // DefaultConnectionClass is the default connectionClass DefaultConnectionClass = "GODROR" // NoConnectionPoolingConnectionClass is a special connection class name to indicate no connection pooling. // It is the same as setting standaloneConnection=1 NoConnectionPoolingConnectionClass = "NO-CONNECTION-POOLING" // DefaultSessionTimeout is the seconds before idle pool sessions get evicted DefaultSessionTimeout = 5 * time.Minute // DefaultWaitTimeout is the milliseconds to wait for a session to become available DefaultWaitTimeout = 30 * time.Second // DefaultMaxLifeTime is the maximum time in seconds till a pooled session may exist DefaultMaxLifeTime = 1 * time.Hour )
const ( NoWait = uint32(0) WaitForever = uint32(1<<31 - 1) )
const ( // MsgStateReady says that "The message is ready to be processed". MsgStateReady = MessageState(C.DPI_MSG_STATE_READY) // MsgStateWaiting says that "The message is waiting for the delay time to expire". MsgStateWaiting = MessageState(C.DPI_MSG_STATE_WAITING) // MsgStateProcessed says that "The message has already been processed and is retained". MsgStateProcessed = MessageState(C.DPI_MSG_STATE_PROCESSED) // MsgStateExpired says that "The message has been moved to the exception queue". MsgStateExpired = MessageState(C.DPI_MSG_STATE_EXPIRED) )
const ( // DeliverPersistent is to Dequeue only persistent messages from the queue. This is the default mode. DeliverPersistent = DeliveryMode(C.DPI_MODE_MSG_PERSISTENT) // DeliverBuffered is to Dequeue only buffered messages from the queue. DeliverBuffered = DeliveryMode(C.DPI_MODE_MSG_BUFFERED) // DeliverPersistentOrBuffered is to Dequeue both persistent and buffered messages from the queue. DeliverPersistentOrBuffered = DeliveryMode(C.DPI_MODE_MSG_PERSISTENT_OR_BUFFERED) )
const ( // VisibleImmediate means that "The message is not part of the current transaction but constitutes a transaction of its own". VisibleImmediate = Visibility(C.DPI_VISIBILITY_IMMEDIATE) // VisibleOnCommit means that "The message is part of the current transaction. This is the default value". VisibleOnCommit = Visibility(C.DPI_VISIBILITY_ON_COMMIT) )
const ( // DeqRemove reads the message and updates or deletes it. This is the default mode. Note that the message may be retained in the queue table based on retention properties. DeqRemove = DeqMode(C.DPI_MODE_DEQ_REMOVE) // DeqBrows reads the message without acquiring a lock on the message (equivalent to a SELECT statement). DeqBrowse = DeqMode(C.DPI_MODE_DEQ_BROWSE) // DeqLocked reads the message and obtain a write lock on the message (equivalent to a SELECT FOR UPDATE statement). DeqLocked = DeqMode(C.DPI_MODE_DEQ_LOCKED) // DeqPeek confirms receipt of the message but does not deliver the actual message content. DeqPeek = DeqMode(C.DPI_MODE_DEQ_REMOVE_NO_DATA) )
const ( DeqNavigation(C.DPI_DEQ_NAV_FIRST_MSG) NavNextTran = DeqNavigation(C.DPI_DEQ_NAV_NEXT_TRANSACTION) NavNext = DeqNavigation(C.DPI_DEQ_NAV_NEXT_MSG) )NavFirst =
const ( EvtStartup = EventType(C.DPI_EVENT_STARTUP) EvtShutdown = EventType(C.DPI_EVENT_SHUTDOWN) EvtShutdownAny = EventType(C.DPI_EVENT_SHUTDOWN_ANY) EvtDereg = EventType(C.DPI_EVENT_DEREG) EvtObjChange = EventType(C.DPI_EVENT_OBJCHANGE) EvtQueryChange = EventType(C.DPI_EVENT_QUERYCHANGE) EvtAQ = EventType(C.DPI_EVENT_AQ) )
Events that can be watched.
const ( // OpAll Indicates that notifications should be sent for all operations on the table or query. OpAll = Operation(C.DPI_OPCODE_ALL_OPS) // OpAllRows Indicates that all rows have been changed in the table or query (or too many rows were changed or row information was not requested). OpAllRows = Operation(C.DPI_OPCODE_ALL_ROWS) // OpInsert Indicates that an insert operation has taken place in the table or query. OpInsert = Operation(C.DPI_OPCODE_INSERT) // OpUpdate Indicates that an update operation has taken place in the table or query. OpUpdate = Operation(C.DPI_OPCODE_UPDATE) // OpDelete Indicates that a delete operation has taken place in the table or query. OpDelete = Operation(C.DPI_OPCODE_DELETE) // OpAlter Indicates that the registered table or query has been altered. OpAlter = Operation(C.DPI_OPCODE_ALTER) // OpDrop Indicates that the registered table or query has been dropped. OpDrop = Operation(C.DPI_OPCODE_DROP) // OpUnknown An unknown operation has taken place. OpUnknown = Operation(C.DPI_OPCODE_UNKNOWN) )
const MsgIDLength = 16
const Version = "v0.11.3"
Version of this driver
Variables ¶
var ( // Int64 for converting to-from int64. Int64 = intType{} // Float64 for converting to-from float64. Float64 = floatType{} // Num for converting to-from Number (string) Num = numType{} )
var DefaultDeqOptions = DeqOptions{ Mode: DeqRemove, DeliveryMode: DeliverPersistent, Navigation: NavFirst, Visibility: VisibleImmediate, Wait: 30, }
DefaultDeqOptions is the default set for NewQueue.
var DefaultEnqOptions = EnqOptions{ Visibility: VisibleImmediate, DeliveryMode: DeliverPersistent, }
DefaultEnqOptions is the default set for NewQueue.
var ErrNoSuchKey = errors.New("no such key")
ErrNoSuchKey is the error for missing key in lookup.
var ErrNotCollection = errors.New("not collection")
ErrNotCollection is returned when the Object is not a collection.
var ErrNotExist = errors.New("not exist")
ErrNotExist is returned when the collection's requested element does not exist.
var ErrNotSupported = errors.New("not supported")
var Log func(...interface{}) error
Log function. By default, it's nil, and thus logs nothing. If you want to change this, change it to a github.com/go-kit/kit/log.Swapper.Log or analog to be race-free.
Functions ¶
func CallbackSubscr ¶
func CallbackSubscr(ctx unsafe.Pointer, message *C.dpiSubscrMessage)
CallbackSubscr is the callback for C code on subscription event.
func ContextWithLog ¶
ContextWithLog returns a context with the given log function.
func ContextWithTraceTag ¶
ContextWithTraceTag returns a context with the specified TraceTag, which will be set on the session used.
func ContextWithUserPassw ¶
ContextWithUserPassw returns a context with the specified user and password, to be used with heterogeneous pools.
func EnableDbmsOutput ¶
EnableDbmsOutput enables DBMS_OUTPUT buffering on the given connection. This is required if you want to retrieve the output with ReadDbmsOutput later.
func MapToSlice ¶
MapToSlice modifies query for map (:paramname) to :%d placeholders + slice of params.
Calls metParam for each parameter met, and returns the slice of their results.
func NamedToOrdered ¶
NamedToOrdered converts the query from named params (:paramname) to :%d placeholders + slice of params, copying the params verbatim.
func NewConnector ¶
NewConnector returns a driver.Connector to be used with sql.OpenDB, (for the default Driver registered with godror) which calls the given onInit if the connection is new.
For an onInit example, see NewSessionIniter.
func NewSessionIniter ¶
NewSessionIniter returns a function suitable for use in NewConnector as onInit, which calls "ALTER SESSION SET <key>='<value>'" for each element of the given map.
func ReadDbmsOutput ¶
ReadDbmsOutput copies the DBMS_OUTPUT buffer into the given io.Writer.
Be sure that you enable it beforehand (either with EnableDbmsOutput or with DBMS_OUTPUT.enable(NULL))
Types ¶
type Column ¶
type Column struct { Name string ObjectType *C.dpiObjectType OracleType C.dpiOracleTypeNum NativeType C.dpiNativeTypeNum Size, SizeInChars, DBSize C.uint32_t Precision C.int16_t Scale C.int8_t Nullable bool }
Column holds the info from a column.
type CompileError ¶
type CompileError struct {
Owner, Name, Type string
Line, Position, Code int64
Text string
Warning bool
}
CompileError represents a compile-time error as in user_errors view.
func GetCompileErrors ¶
func GetCompileErrors(queryer queryer, all bool) ([]CompileError, error)
GetCompileErrors returns the slice of the errors in user_errors.
If all is false, only errors are returned; otherwise, warnings, too.
func (CompileError) Error ¶
func (ce CompileError) Error() string
type Conn ¶
type Conn interface { driver.Conn driver.ConnBeginTx driver.ConnPrepareContext driver.Pinger Break() error Commit() error Rollback() error ClientVersion() (VersionInfo, error) ServerVersion() (VersionInfo, error) GetObjectType(name string) (ObjectType, error) NewSubscription(string, func(Event)) (*Subscription, error) Startup(StartupMode) error Shutdown(ShutdownMode) error NewData(baseType interface{}, SliceLen, BufSize int) ([]*Data, error) Timezone() *time.Location }
Conn is the interface for a connection, to be returned by DriverConn.
type ConnectionParams ¶
type ConnectionParams struct { OnInit []string Username, Password, SID, ConnClass string // NewPassword is used iff StandaloneConnection is true! NewPassword string MinSessions, MaxSessions, PoolIncrement int WaitTimeout, MaxLifeTime, SessionTimeout time.Duration Timezone *time.Location IsSysDBA, IsSysOper, IsSysASM, IsPrelim bool HeterogeneousPool bool StandaloneConnection bool EnableEvents bool }
ConnectionParams holds the params for a connection (pool). You can use ConnectionParams{...}.StringWithPassword() as a connection string in sql.Open.
func ParseConnString ¶
func ParseConnString(connString string) (ConnectionParams, error)
ParseConnString parses the given connection string into a struct.
func (*ConnectionParams) Comb ¶
func (P *ConnectionParams) Comb()
func (*ConnectionParams) SetSessionParamOnInit ¶
func (P *ConnectionParams) SetSessionParamOnInit(k, v string)
SetSessionParamOnInit adds an "ALTER SESSION k=v" to the OnInit task list.
func (ConnectionParams) String ¶
func (P ConnectionParams) String() string
String returns the string representation of ConnectionParams. The password is replaced with a "SECRET" string!
func (ConnectionParams) StringNoClass ¶
func (P ConnectionParams) StringNoClass() string
StringNoClass returns the string representation of ConnectionParams, without class info. The password is replaced with a "SECRET" string!
func (ConnectionParams) StringWithPassword ¶
func (P ConnectionParams) StringWithPassword() string
StringWithPassword returns the string representation of ConnectionParams (as String() does), but does NOT obfuscate the password, just prints it as is.
type Data ¶
type Data struct { ObjectType ObjectType NativeTypeNum C.dpiNativeTypeNum // contains filtered or unexported fields }
Data holds the data to/from Oracle.
func NewData ¶
NewData creates a new Data structure for the given type, populated with the given type.
func (*Data) GetFloat32 ¶
GetFloat32 gets float32 from the data.
func (*Data) GetFloat64 ¶
GetFloat64 gets float64 from the data.
func (*Data) GetIntervalDS ¶
GetIntervalDS gets duration as interval date-seconds from data.
func (*Data) GetIntervalYM ¶
func (d *Data) GetIntervalYM() IntervalYM
GetIntervalYM gets IntervalYM from the data.
func (*Data) GetObject ¶
GetObject gets Object from data.
As with all Objects, you MUST call Close on it when not needed anymore!
func (*Data) SetIntervalDS ¶
SetIntervalDS sets the duration as interval date-seconds to data.
func (*Data) SetIntervalYM ¶
func (d *Data) SetIntervalYM(ym IntervalYM)
SetIntervalYM sets IntervalYM to the data.
type DeqOptions ¶
type DeqOptions struct {
Condition, Consumer, Correlation string
MsgID, Transformation string
Mode DeqMode
DeliveryMode DeliveryMode
Visibility Visibility
Wait uint32
}
DeqOptions are the options used to dequeue a message.
type DirectLob ¶
type DirectLob struct {
// contains filtered or unexported fields
}
DirectLob holds a Lob and allows direct (Read/WriteAt, not streaming Read/Write) operations on it.
func (*DirectLob) Set ¶
Set the contents of the LOB to the given byte slice. The LOB is cleared first.
type Drv ¶
type Drv struct {
// contains filtered or unexported fields
}
func (*Drv) ClientVersion ¶
func (d *Drv) ClientVersion() (VersionInfo, error)
func (*Drv) NewConnector ¶
NewConnector returns a driver.Connector to be used with sql.OpenDB, which calls the given onInit if the connection is new.
For an onInit example, see NewSessionIniter.
type EnqOptions ¶
type EnqOptions struct { Transformation string Visibility Visibility DeliveryMode DeliveryMode }
EnqOptions are the options used to enqueue a message.
type Event ¶
type Event struct { Tables []TableEvent Queries []QueryEvent DB string Err error Type EventType }
Event for a subscription.
type IntervalYM ¶
type IntervalYM struct {
Years, Months int
}
IntervalYM holds Years and Months as interval.
type Message ¶
type Message struct {
Correlation, ExceptionQ string
Enqueued time.Time
MsgID, OriginalMsgID [16]byte
Raw []byte
Delay, Expiration int32
Priority, NumAttempts int32
Object *Object
DeliveryMode DeliveryMode
State MessageState
}
Message is a message - either received or being sent.
type Number ¶
type Number string
Number as string
func (Number) MarshalJSON ¶
MarshalJSON marshals a Number into a JSON string.
func (Number) MarshalText ¶
MarshalText marshals a Number to text.
func (*Number) UnmarshalJSON ¶
UnmarshalJSON parses a JSON string into the Number.
func (*Number) UnmarshalText ¶
UnmarshalText parses text into a Number.
type Object ¶
type Object struct { ObjectType // contains filtered or unexported fields }
Object represents a dpiObject.
func (*Object) Collection ¶
func (O *Object) Collection() ObjectCollection
Collection returns &ObjectCollection{Object: O} iff the Object is a collection. Otherwise it returns nil.
func (*Object) GetAttribute ¶
GetAttribute gets the i-th attribute into data.
func (*Object) ResetAttributes ¶
ResetAttributes prepare all attributes for use the object as IN parameter
type ObjectAttribute ¶
type ObjectAttribute struct { Name string ObjectType // contains filtered or unexported fields }
ObjectAttribute is an attribute of an Object.
type ObjectCollection ¶
type ObjectCollection struct {
*Object
}
ObjectCollection represents a Collection of Objects - itself an Object, too.
func (ObjectCollection) Append ¶
func (O ObjectCollection) Append(v interface{}) error
Append v to the collection.
func (ObjectCollection) AppendData ¶
func (O ObjectCollection) AppendData(data *Data) error
AppendData to the collection.
func (ObjectCollection) AppendObject ¶
func (O ObjectCollection) AppendObject(obj *Object) error
AppendObject adds an Object to the collection.
func (ObjectCollection) AsSlice ¶
func (O ObjectCollection) AsSlice(dest interface{}) (interface{}, error)
AsSlice retrieves the collection into a slice.
func (ObjectCollection) Delete ¶
func (O ObjectCollection) Delete(i int) error
Delete i-th element of the collection.
func (ObjectCollection) First ¶
func (O ObjectCollection) First() (int, error)
First returns the first element's index of the collection.
func (ObjectCollection) Get ¶
func (O ObjectCollection) Get(i int) (interface{}, error)
Get the i-th element of the collection.
func (ObjectCollection) GetItem ¶
func (O ObjectCollection) GetItem(data *Data, i int) error
GetItem gets the i-th element of the collection into data.
func (ObjectCollection) Last ¶
func (O ObjectCollection) Last() (int, error)
Last returns the index of the last element.
func (ObjectCollection) Len ¶
func (O ObjectCollection) Len() (int, error)
Len returns the length of the collection.
func (ObjectCollection) Next ¶
func (O ObjectCollection) Next(i int) (int, error)
Next returns the succeeding index of i.
func (ObjectCollection) Set ¶
func (O ObjectCollection) Set(i int, v interface{}) error
Set the i-th element of the collection with value.
func (ObjectCollection) SetItem ¶
func (O ObjectCollection) SetItem(i int, data *Data) error
SetItem sets the i-th element of the collection with data.
func (ObjectCollection) Trim ¶
func (O ObjectCollection) Trim(n int) error
Trim the collection to n.
type ObjectScanner ¶
ObjectScanner assigns a value from a database object
type ObjectType ¶
type ObjectType struct {
Schema, Name string
Attributes map[string]ObjectAttribute
DBSize, ClientSizeInBytes, CharSize int
CollectionOf *ObjectType
OracleTypeNum C.dpiOracleTypeNum
NativeTypeNum C.dpiNativeTypeNum
Precision int16
Scale int8
FsPrecision uint8
// contains filtered or unexported fields
}
ObjectType holds type info of an Object.
func GetObjectType ¶
GetObjectType returns the ObjectType for the name.
func (ObjectType) FullName ¶
func (t ObjectType) FullName() string
FullName returns the object's name with the schame prepended.
func (ObjectType) NewCollection ¶
func (t ObjectType) NewCollection() (ObjectCollection, error)
NewCollection returns a new Collection object with ObjectType type. If the ObjectType is not a Collection, it returns ErrNotCollection error.
func (ObjectType) NewObject ¶
func (t ObjectType) NewObject() (*Object, error)
NewObject returns a new Object with ObjectType type.
As with all Objects, you MUST call Close on it when not needed anymore!
func (ObjectType) String ¶
func (t ObjectType) String() string
type ObjectWriter ¶
type ObjectWriter interface { WriteObject() error // contains filtered or unexported methods }
ObjectWriter update database object before binding
type Option ¶
type Option func(*stmtOptions)
Option holds statement options.
PlSQLArrays is to signal that the slices given in arguments of Exec to be left as is - the default is to treat them as arguments for ExecMany.
func ArraySize ¶
ArraySize returns an option to set the array size to be used, overriding DefaultArraySize.
func CallTimeout ¶
CallTimeout sets the round-trip timeout (OCI_ATTR_CALL_TIMEOUT).
func ClobAsString ¶
func ClobAsString() Option
ClobAsString returns an option to force fetching CLOB columns as strings.
DEPRECATED.
func FetchRowCount ¶
FetchRowCount returns an option to set the rows to be fetched, overriding DefaultFetchRowCount.
func LobAsReader ¶
func LobAsReader() Option
LobAsReader is an option to set query columns of CLOB/BLOB to be returned as a Lob.
LOB as a reader and writer is not the most performant at all. Yes, OCI and ODPI-C provide a way to retrieve this data directly. Effectively, all you need to do is tell ODPI-C that you want a "long string" or "long raw" returned. You can do that by telling ODPI-C you want a variable with oracleTypeNum=DPI_ORACLE_TYPE_LONG_VARCHAR or DPI_ORACLE_TYPE_LONG_RAW and nativeTypeNum=DPI_NATIVE_TYPE_BYTES. ODPI-C will handle all of the dynamic fetching and allocation that is required. :-) You can also use DPI_ORACLE_TYPE_VARCHAR and DPI_ORACLE_TYPE_RAW as long as you set the size > 32767 -- whichever way you wish to use.
With the use of LOBs, there is one round-trip to get the LOB locators, then a round-trip for each read() that is performed. If you request the length there is another round-trip required. So if you fetch 100 rows with 2 CLOB columns, that means you get 401 round-trips. Using string/[]bytes directly means only one round trip. So you can see that if your database is remote with high latency you can have a significant performance penalty!
func MagicTypeConversion ¶
func MagicTypeConversion() Option
MagicTypeConversion returns an option to force converting named scalar types (e.g. "type underlying int64") to their scalar underlying type.
func NumberAsString ¶
func NumberAsString() Option
NumberAsString returns an option to return numbers as string, not Number.
type OraErr ¶
type OraErr struct {
// contains filtered or unexported fields
}
OraErr is an error holding the ORA-01234 code and the message.
type QueryColumn ¶
QueryColumn is the described column.
func DescribeQuery ¶
DescribeQuery describes the columns in the qry.
This can help using unknown-at-compile-time, a.k.a. dynamic queries.
type QueryEvent ¶
type QueryEvent struct { Tables []TableEvent ID uint64 Operation }
QueryEvent is an event of a Query.
type Queue ¶
type Queue struct { PayloadObjectType ObjectType // contains filtered or unexported fields }
Queue represents an Oracle Advanced Queue.
func NewQueue ¶
func NewQueue(ctx context.Context, execer Execer, name string, payloadObjectTypeName string) (*Queue, error)
NewQueue creates a new Queue.
WARNING: the connection given to it must not be closed before the Queue is closed! So use an sql.Conn for it.
func (*Queue) DeqOptions ¶
func (Q *Queue) DeqOptions() (DeqOptions, error)
DeqOptions returns the queue's dequeue options in effect.
func (*Queue) Dequeue ¶
Dequeues messages into the given slice. Returns the number of messages filled in the given slice.
func (*Queue) EnqOptions ¶
func (Q *Queue) EnqOptions() (EnqOptions, error)
EnqOptions returns the queue's enqueue options in effect.
func (*Queue) Enqueue ¶
Enqueue all the messages given.
WARNING: calling this function in parallel on different connections acquired from the same pool may fail due to Oracle bug 29928074. Ensure that this function is not run in parallel, use standalone connections or connections from different pools, or make multiple calls to Queue.enqOne() instead. The function Queue.Dequeue() call is not affected.
func (*Queue) SetDeqCorrelation ¶
SetDeqCorrelation is a convenience function setting the Correlation DeqOption
func (*Queue) SetDeqOptions ¶
func (Q *Queue) SetDeqOptions(D DeqOptions) error
SetDeqOptions sets all the dequeue options
func (*Queue) SetEnqOptions ¶
func (Q *Queue) SetEnqOptions(E EnqOptions) error
SetEnqOptions sets all the enqueue options
type ShutdownMode ¶
type ShutdownMode C.dpiShutdownMode
ShutdownMode for the database.
Example ¶
ExampleShutdownMode is an example of how to shut down a database.
package main import ( "context" "database/sql" "log" errors "golang.org/x/xerrors" godror "github.com/godror/godror" ) func main() { dsn := "oracle://?sysdba=1" // equivalent to "/ as sysdba" db, err := sql.Open("godror", dsn) if err != nil { log.Fatal(errors.Errorf("%s: %w", dsn, err)) } defer db.Close() if err = exampleShutdown(db, godror.ShutdownTransactionalLocal); err != nil { log.Fatal(err) } } func exampleShutdown(db *sql.DB, shutdownMode godror.ShutdownMode) error { ctx, cancel := context.WithCancel(context.Background()) defer cancel() oraDB, err := godror.DriverConn(ctx, db) if err != nil { return err } log.Printf("Beginning shutdown %v", shutdownMode) if err = oraDB.Shutdown(shutdownMode); err != nil { return err } if shutdownMode == godror.ShutdownAbort { return nil } log.Println("Closing database") if _, err = db.Exec("alter database close normal"); err != nil { return err } log.Println("Unmounting database") if _, err = db.Exec("alter database dismount"); err != nil { return err } log.Println("Finishing shutdown") if err = oraDB.Shutdown(godror.ShutdownFinal); err != nil { return err } return nil }
Output:
type StartupMode ¶
type StartupMode C.dpiStartupMode
StartupMode for the database.
Example ¶
ExampleStartupMode calls exampleStartup to start a database.
package main import ( "context" "database/sql" "log" errors "golang.org/x/xerrors" godror "github.com/godror/godror" ) func main() { if err := exampleStartup(godror.StartupDefault); err != nil { log.Fatal(err) } } func exampleStartup(startupMode godror.StartupMode) error { ctx, cancel := context.WithCancel(context.Background()) defer cancel() dsn := "oracle://?sysdba=1&prelim=1" db, err := sql.Open("godror", dsn) if err != nil { log.Fatal(errors.Errorf("%s: %w", dsn, err)) } defer db.Close() oraDB, err := godror.DriverConn(ctx, db) if err != nil { return err } log.Println("Starting database") if err = oraDB.Startup(startupMode); err != nil { return err } db2, err := sql.Open("godror", "oracle://?sysdba=1") if err != nil { return err } defer db2.Close() log.Println("Mounting database") if _, err = db2.Exec("alter database mount"); err != nil { return err } log.Println("Opening database") if _, err = db2.Exec("alter database open"); err != nil { return err } return nil }
Output:
type Subscription ¶
type Subscription struct { ID uint64 // contains filtered or unexported fields }
Subscription for events in the DB.
func (*Subscription) Close ¶
func (s *Subscription) Close() error
Close the subscription.
This code is EXPERIMENTAL yet!
func (*Subscription) Register ¶
func (s *Subscription) Register(qry string, params ...interface{}) error
Register a query for Change Notification.
This code is EXPERIMENTAL yet!
type TableEvent ¶
TableEvent is for a Table-related event.
type TraceTag ¶
type TraceTag struct { // ClientIdentifier - specifies an end user based on the logon ID, such as HR.HR ClientIdentifier string // ClientInfo - client-specific info ClientInfo string // DbOp - database operation DbOp string // Module - specifies a functional block, such as Accounts Receivable or General Ledger, of an application Module string // Action - specifies an action, such as an INSERT or UPDATE operation, in a module Action string }
TraceTag holds tracing information for the session. It can be set on the session with ContextWithTraceTag.
type VersionInfo ¶
type VersionInfo struct { ServerRelease string Version, Release, Update, PortRelease, PortUpdate, Full uint8 }
VersionInfo holds version info returned by Oracle DB.
func ClientVersion ¶
func ClientVersion(ctx context.Context, ex Execer) (VersionInfo, error)
ClientVersion returns the VersionInfo from the DB.
func ServerVersion ¶
func ServerVersion(ctx context.Context, ex Execer) (VersionInfo, error)
ServerVersion returns the VersionInfo of the client.
func (VersionInfo) String ¶
func (V VersionInfo) String() string