├── .gitattributes ├── .gitignore ├── .idea └── vcs.xml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── appveyor.yml ├── bndBfile.go ├── bndBin.go ├── bndBinSlice.go ├── bndBool.go ├── bndBoolPtr.go ├── bndBoolSlice.go ├── bndDate.go ├── bndDatePtr.go ├── bndDateSlice.go ├── bndFloat32.go ├── bndFloat32Ptr.go ├── bndFloat32Slice.go ├── bndFloat64.go ├── bndFloat64Ptr.go ├── bndFloat64Slice.go ├── bndInt16.go ├── bndInt16Ptr.go ├── bndInt16Slice.go ├── bndInt32.go ├── bndInt32Ptr.go ├── bndInt32Slice.go ├── bndInt64.go ├── bndInt64Ptr.go ├── bndInt64Slice.go ├── bndInt8.go ├── bndInt8Ptr.go ├── bndInt8Slice.go ├── bndIntervalDS.go ├── bndIntervalDSSlice.go ├── bndIntervalYM.go ├── bndIntervalYMSlice.go ├── bndLob.go ├── bndLobPtr.go ├── bndLobSlice.go ├── bndNil.go ├── bndNumString.go ├── bndNumStringPtr.go ├── bndNumStringSlice.go ├── bndOCINum.go ├── bndOCINumPtr.go ├── bndOCINumSlice.go ├── bndRset.go ├── bndString.go ├── bndStringPtr.go ├── bndStringSlice.go ├── bndTime.go ├── bndTimePtr.go ├── bndTimeSlice.go ├── bndUint16.go ├── bndUint16Ptr.go ├── bndUint16Slice.go ├── bndUint32.go ├── bndUint32Ptr.go ├── bndUint32Slice.go ├── bndUint64.go ├── bndUint64Ptr.go ├── bndUint64Slice.go ├── bndUint8.go ├── bndUint8Ptr.go ├── bndUint8Slice.go ├── bnd_hlp.go ├── conn.go ├── conn_go1_7.go ├── conn_go1_8.go ├── const.go ├── contrib ├── oci8.pc ├── oci8_darwin.pc ├── oci8_linux_386.pc ├── oci8_linux_amd64.pc ├── oci8_windows_amd64.pc └── pre-commit ├── ctx.go ├── date ├── date.go ├── date_gen_test.go ├── date_test.go └── date_test.sh ├── defBfile.go ├── defBool.go ├── defDate.go ├── defFloat32.go ├── defFloat64.go ├── defInt16.go ├── defInt32.go ├── defInt64.go ├── defInt8.go ├── defIntervalDS.go ├── defIntervalYM.go ├── defLob.go ├── defLongRaw.go ├── defOCINum.go ├── defRaw.go ├── defRowid.go ├── defRset.go ├── defString.go ├── defTime.go ├── defUint16.go ├── defUint32.go ├── defUint64.go ├── defUint8.go ├── doc.go ├── drv.go ├── drvExecResult.go ├── drvQueryResult.go ├── drvStmt.go ├── drvStmt_go1_8.go ├── env.go ├── examples ├── bench │ ├── .gitignore │ ├── README.md │ ├── gen.go │ ├── oci8 │ │ └── bench_oci8.go │ ├── ora │ │ └── bench_ora.go │ └── run.sh ├── connect │ └── flags.go ├── conntest │ ├── conn_test.go │ └── main.go ├── csvdump │ ├── README.md │ └── csvdump.go └── csvload │ └── csvload.go ├── gen.go ├── glg └── glg.go ├── lg └── lg.go ├── lg15 └── lg15.go ├── list.go ├── logger.go ├── num ├── .gitignore ├── ocinum.go ├── ocinum_fuzz.go └── ocinum_test.go ├── ora.go ├── orm.go ├── pool.go ├── rset.go ├── rsetCfg.go ├── rsetCfg_test.go ├── ses.go ├── srv.go ├── stmt.go ├── stmtCfg.go ├── stmt_go1.go ├── stmt_go1_8.go ├── test-one-by-one.sh ├── test.sh ├── tstlg └── tstlg.go ├── tx.go ├── type.go ├── util.go ├── util_arr.go ├── util_test.go ├── version.c ├── version.h ├── z_benchmem_test.go ├── z_bfile_session_test.go ├── z_bool_session_test.go ├── z_bytes_session_test.go ├── z_db_go1_8_test.go ├── z_db_test.go ├── z_environment_test.go ├── z_example_test.go ├── z_interval_session_test.go ├── z_issue131.go ├── z_issue197.go ├── z_lob_test.go ├── z_numeric_session_test.go ├── z_oracle_test.go ├── z_plsarr_session_test.go ├── z_race.go ├── z_reconn.go ├── z_resultSet_session_test.go ├── z_rowid_session_test.go ├── z_server_session_test.go ├── z_session_test.go ├── z_statement_session_test.go ├── z_string_session_test.go └── z_time_session_test.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bndBfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndBfile.go -------------------------------------------------------------------------------- /bndBin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndBin.go -------------------------------------------------------------------------------- /bndBinSlice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndBinSlice.go -------------------------------------------------------------------------------- /bndBool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndBool.go -------------------------------------------------------------------------------- /bndBoolPtr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndBoolPtr.go -------------------------------------------------------------------------------- /bndBoolSlice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndBoolSlice.go -------------------------------------------------------------------------------- /bndDate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndDate.go -------------------------------------------------------------------------------- /bndDatePtr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndDatePtr.go -------------------------------------------------------------------------------- /bndDateSlice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndDateSlice.go -------------------------------------------------------------------------------- /bndFloat32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndFloat32.go -------------------------------------------------------------------------------- /bndFloat32Ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndFloat32Ptr.go -------------------------------------------------------------------------------- /bndFloat32Slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndFloat32Slice.go -------------------------------------------------------------------------------- /bndFloat64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndFloat64.go -------------------------------------------------------------------------------- /bndFloat64Ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndFloat64Ptr.go -------------------------------------------------------------------------------- /bndFloat64Slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndFloat64Slice.go -------------------------------------------------------------------------------- /bndInt16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndInt16.go -------------------------------------------------------------------------------- /bndInt16Ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndInt16Ptr.go -------------------------------------------------------------------------------- /bndInt16Slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndInt16Slice.go -------------------------------------------------------------------------------- /bndInt32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndInt32.go -------------------------------------------------------------------------------- /bndInt32Ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndInt32Ptr.go -------------------------------------------------------------------------------- /bndInt32Slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndInt32Slice.go -------------------------------------------------------------------------------- /bndInt64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndInt64.go -------------------------------------------------------------------------------- /bndInt64Ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndInt64Ptr.go -------------------------------------------------------------------------------- /bndInt64Slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndInt64Slice.go -------------------------------------------------------------------------------- /bndInt8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndInt8.go -------------------------------------------------------------------------------- /bndInt8Ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndInt8Ptr.go -------------------------------------------------------------------------------- /bndInt8Slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndInt8Slice.go -------------------------------------------------------------------------------- /bndIntervalDS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndIntervalDS.go -------------------------------------------------------------------------------- /bndIntervalDSSlice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndIntervalDSSlice.go -------------------------------------------------------------------------------- /bndIntervalYM.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndIntervalYM.go -------------------------------------------------------------------------------- /bndIntervalYMSlice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndIntervalYMSlice.go -------------------------------------------------------------------------------- /bndLob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndLob.go -------------------------------------------------------------------------------- /bndLobPtr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndLobPtr.go -------------------------------------------------------------------------------- /bndLobSlice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndLobSlice.go -------------------------------------------------------------------------------- /bndNil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndNil.go -------------------------------------------------------------------------------- /bndNumString.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndNumString.go -------------------------------------------------------------------------------- /bndNumStringPtr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndNumStringPtr.go -------------------------------------------------------------------------------- /bndNumStringSlice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndNumStringSlice.go -------------------------------------------------------------------------------- /bndOCINum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndOCINum.go -------------------------------------------------------------------------------- /bndOCINumPtr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndOCINumPtr.go -------------------------------------------------------------------------------- /bndOCINumSlice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndOCINumSlice.go -------------------------------------------------------------------------------- /bndRset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndRset.go -------------------------------------------------------------------------------- /bndString.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndString.go -------------------------------------------------------------------------------- /bndStringPtr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndStringPtr.go -------------------------------------------------------------------------------- /bndStringSlice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndStringSlice.go -------------------------------------------------------------------------------- /bndTime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndTime.go -------------------------------------------------------------------------------- /bndTimePtr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndTimePtr.go -------------------------------------------------------------------------------- /bndTimeSlice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndTimeSlice.go -------------------------------------------------------------------------------- /bndUint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndUint16.go -------------------------------------------------------------------------------- /bndUint16Ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndUint16Ptr.go -------------------------------------------------------------------------------- /bndUint16Slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndUint16Slice.go -------------------------------------------------------------------------------- /bndUint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndUint32.go -------------------------------------------------------------------------------- /bndUint32Ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndUint32Ptr.go -------------------------------------------------------------------------------- /bndUint32Slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndUint32Slice.go -------------------------------------------------------------------------------- /bndUint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndUint64.go -------------------------------------------------------------------------------- /bndUint64Ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndUint64Ptr.go -------------------------------------------------------------------------------- /bndUint64Slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndUint64Slice.go -------------------------------------------------------------------------------- /bndUint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndUint8.go -------------------------------------------------------------------------------- /bndUint8Ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndUint8Ptr.go -------------------------------------------------------------------------------- /bndUint8Slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bndUint8Slice.go -------------------------------------------------------------------------------- /bnd_hlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/bnd_hlp.go -------------------------------------------------------------------------------- /conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/conn.go -------------------------------------------------------------------------------- /conn_go1_7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/conn_go1_7.go -------------------------------------------------------------------------------- /conn_go1_8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/conn_go1_8.go -------------------------------------------------------------------------------- /const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/const.go -------------------------------------------------------------------------------- /contrib/oci8.pc: -------------------------------------------------------------------------------- 1 | oci8_linux_amd64.pc -------------------------------------------------------------------------------- /contrib/oci8_darwin.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/contrib/oci8_darwin.pc -------------------------------------------------------------------------------- /contrib/oci8_linux_386.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/contrib/oci8_linux_386.pc -------------------------------------------------------------------------------- /contrib/oci8_linux_amd64.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/contrib/oci8_linux_amd64.pc -------------------------------------------------------------------------------- /contrib/oci8_windows_amd64.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/contrib/oci8_windows_amd64.pc -------------------------------------------------------------------------------- /contrib/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/contrib/pre-commit -------------------------------------------------------------------------------- /ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/ctx.go -------------------------------------------------------------------------------- /date/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/date/date.go -------------------------------------------------------------------------------- /date/date_gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/date/date_gen_test.go -------------------------------------------------------------------------------- /date/date_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/date/date_test.go -------------------------------------------------------------------------------- /date/date_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/date/date_test.sh -------------------------------------------------------------------------------- /defBfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defBfile.go -------------------------------------------------------------------------------- /defBool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defBool.go -------------------------------------------------------------------------------- /defDate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defDate.go -------------------------------------------------------------------------------- /defFloat32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defFloat32.go -------------------------------------------------------------------------------- /defFloat64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defFloat64.go -------------------------------------------------------------------------------- /defInt16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defInt16.go -------------------------------------------------------------------------------- /defInt32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defInt32.go -------------------------------------------------------------------------------- /defInt64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defInt64.go -------------------------------------------------------------------------------- /defInt8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defInt8.go -------------------------------------------------------------------------------- /defIntervalDS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defIntervalDS.go -------------------------------------------------------------------------------- /defIntervalYM.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defIntervalYM.go -------------------------------------------------------------------------------- /defLob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defLob.go -------------------------------------------------------------------------------- /defLongRaw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defLongRaw.go -------------------------------------------------------------------------------- /defOCINum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defOCINum.go -------------------------------------------------------------------------------- /defRaw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defRaw.go -------------------------------------------------------------------------------- /defRowid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defRowid.go -------------------------------------------------------------------------------- /defRset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defRset.go -------------------------------------------------------------------------------- /defString.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defString.go -------------------------------------------------------------------------------- /defTime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defTime.go -------------------------------------------------------------------------------- /defUint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defUint16.go -------------------------------------------------------------------------------- /defUint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defUint32.go -------------------------------------------------------------------------------- /defUint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defUint64.go -------------------------------------------------------------------------------- /defUint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/defUint8.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/doc.go -------------------------------------------------------------------------------- /drv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/drv.go -------------------------------------------------------------------------------- /drvExecResult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/drvExecResult.go -------------------------------------------------------------------------------- /drvQueryResult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/drvQueryResult.go -------------------------------------------------------------------------------- /drvStmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/drvStmt.go -------------------------------------------------------------------------------- /drvStmt_go1_8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/drvStmt_go1_8.go -------------------------------------------------------------------------------- /env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/env.go -------------------------------------------------------------------------------- /examples/bench/.gitignore: -------------------------------------------------------------------------------- 1 | *.pprof 2 | *.test 3 | *.bench 4 | -------------------------------------------------------------------------------- /examples/bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/examples/bench/README.md -------------------------------------------------------------------------------- /examples/bench/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/examples/bench/gen.go -------------------------------------------------------------------------------- /examples/bench/oci8/bench_oci8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/examples/bench/oci8/bench_oci8.go -------------------------------------------------------------------------------- /examples/bench/ora/bench_ora.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/examples/bench/ora/bench_ora.go -------------------------------------------------------------------------------- /examples/bench/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/examples/bench/run.sh -------------------------------------------------------------------------------- /examples/connect/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/examples/connect/flags.go -------------------------------------------------------------------------------- /examples/conntest/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/examples/conntest/conn_test.go -------------------------------------------------------------------------------- /examples/conntest/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/examples/conntest/main.go -------------------------------------------------------------------------------- /examples/csvdump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/examples/csvdump/README.md -------------------------------------------------------------------------------- /examples/csvdump/csvdump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/examples/csvdump/csvdump.go -------------------------------------------------------------------------------- /examples/csvload/csvload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/examples/csvload/csvload.go -------------------------------------------------------------------------------- /gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/gen.go -------------------------------------------------------------------------------- /glg/glg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/glg/glg.go -------------------------------------------------------------------------------- /lg/lg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/lg/lg.go -------------------------------------------------------------------------------- /lg15/lg15.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/lg15/lg15.go -------------------------------------------------------------------------------- /list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/list.go -------------------------------------------------------------------------------- /logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/logger.go -------------------------------------------------------------------------------- /num/.gitignore: -------------------------------------------------------------------------------- 1 | num-fuzz.zip 2 | -------------------------------------------------------------------------------- /num/ocinum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/num/ocinum.go -------------------------------------------------------------------------------- /num/ocinum_fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/num/ocinum_fuzz.go -------------------------------------------------------------------------------- /num/ocinum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/num/ocinum_test.go -------------------------------------------------------------------------------- /ora.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/ora.go -------------------------------------------------------------------------------- /orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/orm.go -------------------------------------------------------------------------------- /pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/pool.go -------------------------------------------------------------------------------- /rset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/rset.go -------------------------------------------------------------------------------- /rsetCfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/rsetCfg.go -------------------------------------------------------------------------------- /rsetCfg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/rsetCfg_test.go -------------------------------------------------------------------------------- /ses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/ses.go -------------------------------------------------------------------------------- /srv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/srv.go -------------------------------------------------------------------------------- /stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/stmt.go -------------------------------------------------------------------------------- /stmtCfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/stmtCfg.go -------------------------------------------------------------------------------- /stmt_go1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/stmt_go1.go -------------------------------------------------------------------------------- /stmt_go1_8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/stmt_go1_8.go -------------------------------------------------------------------------------- /test-one-by-one.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/test-one-by-one.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/test.sh -------------------------------------------------------------------------------- /tstlg/tstlg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/tstlg/tstlg.go -------------------------------------------------------------------------------- /tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/tx.go -------------------------------------------------------------------------------- /type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/type.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/util.go -------------------------------------------------------------------------------- /util_arr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/util_arr.go -------------------------------------------------------------------------------- /util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/util_test.go -------------------------------------------------------------------------------- /version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/version.c -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/version.h -------------------------------------------------------------------------------- /z_benchmem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_benchmem_test.go -------------------------------------------------------------------------------- /z_bfile_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_bfile_session_test.go -------------------------------------------------------------------------------- /z_bool_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_bool_session_test.go -------------------------------------------------------------------------------- /z_bytes_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_bytes_session_test.go -------------------------------------------------------------------------------- /z_db_go1_8_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_db_go1_8_test.go -------------------------------------------------------------------------------- /z_db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_db_test.go -------------------------------------------------------------------------------- /z_environment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_environment_test.go -------------------------------------------------------------------------------- /z_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_example_test.go -------------------------------------------------------------------------------- /z_interval_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_interval_session_test.go -------------------------------------------------------------------------------- /z_issue131.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_issue131.go -------------------------------------------------------------------------------- /z_issue197.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_issue197.go -------------------------------------------------------------------------------- /z_lob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_lob_test.go -------------------------------------------------------------------------------- /z_numeric_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_numeric_session_test.go -------------------------------------------------------------------------------- /z_oracle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_oracle_test.go -------------------------------------------------------------------------------- /z_plsarr_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_plsarr_session_test.go -------------------------------------------------------------------------------- /z_race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_race.go -------------------------------------------------------------------------------- /z_reconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_reconn.go -------------------------------------------------------------------------------- /z_resultSet_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_resultSet_session_test.go -------------------------------------------------------------------------------- /z_rowid_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_rowid_session_test.go -------------------------------------------------------------------------------- /z_server_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_server_session_test.go -------------------------------------------------------------------------------- /z_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_session_test.go -------------------------------------------------------------------------------- /z_statement_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_statement_session_test.go -------------------------------------------------------------------------------- /z_string_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_string_session_test.go -------------------------------------------------------------------------------- /z_time_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rana/ora/HEAD/z_time_session_test.go --------------------------------------------------------------------------------