├── .gitignore ├── LICENSE ├── README.md ├── config.nims ├── demo ├── demo.nim ├── democredentials.nim ├── demoscript.sql ├── demosql.nim └── sqlplusdemo.nim ├── examples ├── hr_pipelined_tablefunc.nim ├── hr_select.nim └── ora_credentials.nim ├── nimodpi.nimble └── src ├── db_oracle.nim ├── nimodpi.nim ├── nimtype_to_odpi.nim ├── odpi_obj2string.nim ├── odpi_to_nimtype.nim └── setfetchtypes.nim /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/README.md -------------------------------------------------------------------------------- /config.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/config.nims -------------------------------------------------------------------------------- /demo/demo.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/demo/demo.nim -------------------------------------------------------------------------------- /demo/democredentials.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/demo/democredentials.nim -------------------------------------------------------------------------------- /demo/demoscript.sql: -------------------------------------------------------------------------------- 1 | select 1 from dual 2 | / -------------------------------------------------------------------------------- /demo/demosql.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/demo/demosql.nim -------------------------------------------------------------------------------- /demo/sqlplusdemo.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/demo/sqlplusdemo.nim -------------------------------------------------------------------------------- /examples/hr_pipelined_tablefunc.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/examples/hr_pipelined_tablefunc.nim -------------------------------------------------------------------------------- /examples/hr_select.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/examples/hr_select.nim -------------------------------------------------------------------------------- /examples/ora_credentials.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/examples/ora_credentials.nim -------------------------------------------------------------------------------- /nimodpi.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/nimodpi.nimble -------------------------------------------------------------------------------- /src/db_oracle.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/src/db_oracle.nim -------------------------------------------------------------------------------- /src/nimodpi.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/src/nimodpi.nim -------------------------------------------------------------------------------- /src/nimtype_to_odpi.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/src/nimtype_to_odpi.nim -------------------------------------------------------------------------------- /src/odpi_obj2string.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/src/odpi_obj2string.nim -------------------------------------------------------------------------------- /src/odpi_to_nimtype.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/src/odpi_to_nimtype.nim -------------------------------------------------------------------------------- /src/setfetchtypes.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikra01/nimodpi/HEAD/src/setfetchtypes.nim --------------------------------------------------------------------------------