# oracle **Repository Path**: athlon18/oracle ## Basic Information - **Project Name**: oracle - **Description**: No description available - **Primary Language**: Go - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-02 - **Last Updated**: 2024-05-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # GORM Oracle Driver ![](https://starchart.cc/CengSin/oracle.svg) ## Description GORM Oracle driver for connect Oracle DB and Manage Oracle DB, Based on [stevefan1999-personal/gorm-driver-oracle](https://github.com/stevefan1999-personal/gorm-driver-oracle) ## Required dependency Install - Oracle 12C+ - Golang 1.13+ - see [ODPI-C Installation.](https://oracle.github.io/odpi/doc/installation.html) ## Quick Start ### how to install ```bash go get github.com/cengsin/oracle ``` ### usage ```go import ( "fmt" "github.com/cengsin/oracle" "gorm.io/gorm" "log" ) func main() { db, err := gorm.Open(oracle.Open("system/oracle@127.0.0.1:1521/XE"), &gorm.Config{}) if err != nil { // panic error or log error info } // do somethings } ```