Web service for fetching data from Oracle Database 10g.
Oracle Data Fetch is a small web service for fetching data from old Oracle 10g database with use of ODP.NET.
Report Bug
·
Request Feature
Oracle Data Fetch is a small Web API 2 service for fetching data from old, obsolate Oracle 10g database where cannot be used EF.
In project there is implemented connection to database with use of ODP.NET. To encapsulate the logic required to access data source the Repository pattern is used.
To get a local copy up and running follow these simple steps:
Web.config
the data needed for database connection:
<connectionStrings>
<add name="OracleDb" connectionString="yourConnectionString"></add>
</connectionStrings>
<appSettings>
<add key="yourTableNameId" value="yourTableName"></add>
</appSettings>
Cushion
model.https://localhost:44351/swagger
https://localhost:44351/api/[PrefixOfYourController]
. In my case for list of all items use https://localhost:44351/api/cushions
and for details for example https://localhost:44351/api/cushions/1/O
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Mateusz Donhefner
Project Link: https://github.com/matdon90/OracleDataFetch