Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattn/go-oci8
Oracle driver for Go using database/sql
https://github.com/mattn/go-oci8
Last synced: 13 days ago
JSON representation
Oracle driver for Go using database/sql
- Host: GitHub
- URL: https://github.com/mattn/go-oci8
- Owner: mattn
- License: mit
- Created: 2012-02-29T12:19:16.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-10-24T04:12:17.000Z (about 1 year ago)
- Last Synced: 2024-10-04T09:58:31.045Z (about 1 month ago)
- Language: Go
- Homepage: https://mattn.kaoriya.net/
- Size: 767 KB
- Stars: 630
- Watchers: 40
- Forks: 212
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-go - go-oci8 - Oracle driver for go that uses database/sql. (Database Drivers / Relational Database Drivers)
- awesome-go-storage - go-oci8 - Oracle driver for go that using database/sql. (Database Drivers)
- awesome-go - go-oci8 - oracle driver for go that using database/sql - ★ 335 (Database Drivers)
- awesome-go-extra - go-oci8 - 02-29T12:19:16Z|2021-10-25T19:04:43Z| (Generators / Relational Database Drivers)
- awesome-go-storage - go-oci8 - Oracle driver for go that using database/sql. (Database Drivers)
README
# go-oci8
[![GoDoc Reference](https://godoc.org/github.com/mattn/go-oci8?status.svg)](http://godoc.org/github.com/mattn/go-oci8)
[![Build Status](https://travis-ci.org/mattn/go-oci8.svg?branch=master)](https://travis-ci.org/mattn/go-oci8)
[![Go Report Card](https://goreportcard.com/badge/github.com/mattn/go-oci8)](https://goreportcard.com/report/github.com/mattn/go-oci8)## Description
Golang Oracle database driver conforming to the Go database/sql interface
## Installation
Install Oracle full client or Instant Client:
https://www.oracle.com/technetwork/database/database-technologies/instant-client/downloads/index.html
Install a C/C++ compiler
Install pkg-config, edit your package config file oci8.pc (examples below), then set environment variable PKG_CONFIG_PATH to oci8.pc file location
(Or can use Go tag noPkgConfig then setup environment variables CGO_CFLAGS and CGO_LDFLAGS)Go get with Go version 1.9 or higher
```
go get github.com/mattn/go-oci8
```Try the simple select example:
https://godoc.org/github.com/mattn/go-oci8#example-package--SqlSelect
If you have a build error it is normaly because of a misconfiguration, make sure to search close issues for help
## oci8.pc Examples
### Windows
```
prefix=/devel/target/XXXXXXXXXXXXXXXXXXXXXXXXXX
exec_prefix=${prefix}
libdir=C:/app/instantclient_12_2/sdk/oci/lib/msvc
includedir=C:/app/instantclient_12_2/sdk/includeglib_genmarshal=glib-genmarshal
gobject_query=gobject-query
glib_mkenums=glib-mkenumsName: oci8
Description: oci8 library
Libs: -L${libdir} -loci
Cflags: -I${includedir}
Version: 12.2
```### Linux
```
prefix=/devel/target/XXXXXXXXXXXXXXXXXXXXXXXXXX
exec_prefix=${prefix}
libdir=/usr/lib/oracle/12.2/client64/lib
includedir=/usr/include/oracle/12.2/client64glib_genmarshal=glib-genmarshal
gobject_query=gobject-query
glib_mkenums=glib-mkenumsName: oci8
Description: oci8 library
Libs: -L${libdir} -lclntsh
Cflags: -I${includedir}
Version: 12.2
```### MacOs
Please install `pkg-config` with [`brew`](https://brew.sh/) if not already present.
Download the instant client and the sdk and unpack it e.g. in your
`Downloads` folder and create therein a file names `oci8.pc`.
Please replace `` with your actual username.```
prefixdir=/Users//Downloads/instantclient_12_2/
libdir=${prefixdir}
includedir=${prefixdir}/sdk/includeName: OCI
Description: Oracle database driver
Version: 12.2
Libs: -L${libdir} -lclntsh
Cflags: -I${includedir}
```You also have to set these environment variables
(e.g. permanently by adding them to your `.bashrc`)```
export LD_LIBRARY_PATH=/Users//Downloads/instantclient_12_2
export PKG_CONFIG_PATH=/Users//Downloads/instantclient_12_2
```## SQL Examples
SQL examples can be found in the GoDoc reference:
https://godoc.org/github.com/mattn/go-oci8
And in _example:
https://github.com/mattn/go-oci8/tree/master/_example
## Author
Yasuhiro Matsumoto (a.k.a mattn)
## Special Thanks
Jamil Djadala