Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created June 26, 2020 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/0bcec0d96bde7f3a3f68461f9192533f to your computer and use it in GitHub Desktop.
Save r-ryantm/0bcec0d96bde7f3a3f68461f9192533f to your computer and use it in GitHub Desktop.
/nix/store/i77vxb1ywdi05r0v07v714x7b6a52h9l-odpic-4.0.0
├── include
│   └── dpi.h
├── lib
│   ├── libodpic.so -> libodpic.so.4
│   ├── libodpic.so.4 -> libodpic.so.4.0.0
│   └── libodpic.so.4.0.0
└── share
└── odpi
├── LICENSE.md
├── README.md
├── samples
│   ├── DemoAppContext.c
│   ├── DemoBFILE.c
│   ├── DemoBindArrays.c
│   ├── DemoBindObjects.c
│   ├── DemoBLOB.c
│   ├── DemoBLOBsAsBytes.c
│   ├── DemoBulkAQ.c
│   ├── DemoCallProc.c
│   ├── DemoCLOB.c
│   ├── DemoCLOBsAsStrings.c
│   ├── DemoConvertNumbers.c
│   ├── DemoCQN.c
│   ├── DemoCreateSodaColl.c
│   ├── DemoDistribTrans.c
│   ├── DemoDMLReturning.c
│   ├── DemoDropSodaColl.c
│   ├── DemoFetch.c
│   ├── DemoFetchDates.c
│   ├── DemoFetchObjects.c
│   ├── DemoGetAllSodaDocs.c
│   ├── DemoGetSodaCollNames.c
│   ├── DemoGetSodaDoc.c
│   ├── DemoImplicitResults.c
│   ├── DemoInOutTempLobs.c
│   ├── DemoInsertAsArray.c
│   ├── DemoInsert.c
│   ├── DemoInsertManySodaColl.c
│   ├── DemoInsertSodaColl.c
│   ├── DemoIterSodaColls.c
│   ├── DemoLongRaws.c
│   ├── DemoLongs.c
│   ├── DemoObjectAQ.c
│   ├── DemoRawAQ.c
│   ├── DemoRefCursors.c
│   ├── DemoRemoveSodaDoc.c
│   ├── DemoReplaceSodaDoc.c
│   ├── DemoShardingNumberKey.c
│   ├── Makefile
│   ├── README.md
│   ├── SampleLib.c
│   ├── SampleLib.h
│   └── sql
│   ├── DropSamples.sql
│   ├── SampleEnv.sql
│   └── SetupSamples.sql
└── test
├── Makefile
├── README.md
├── sql
│   ├── DropTest.sql
│   ├── SetupTest.sql
│   └── TestEnv.sql
├── TestAQ.c
├── TestBatchErrors.c
├── TestBinds.c
├── TestConn.c
├── TestConnProperties.c
├── TestContext.c
├── TestDataTypes.c
├── TestDeqOptions.c
├── TestDMLReturning.c
├── TestEnqOptions.c
├── TestImplicitResults.c
├── TestLib.c
├── TestLib.h
├── TestLOBs.c
├── TestMiscCases.c
├── TestMsgProps.c
├── TestNumbers.c
├── TestObjects.c
├── TestObjectTypes.c
├── TestPool.c
├── TestPoolProperties.c
├── TestQueries.c
├── TestQueue.c
├── TestRowIds.c
├── TestScrollCursors.c
├── TestSessTags.c
├── TestSodaColl.c
├── TestSodaCollCursor.c
├── TestSodaDb.c
├── TestSodaDoc.c
├── TestSodaDocCursor.c
├── TestStatements.c
├── TestSubscriptions.c
├── TestSuiteRunner.c
├── TestTransactions.c
└── TestVariables.c
8 directories, 91 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment