OData ConnectorThe high-performance OData Connector provides read/write capabilities within your application, allowing you to perform numerous OData operations with minimal coding or even no-coding at all. Integrate OData data into applications such as SSIS, SQL Server, any ODBC-compatible application, or even directly within a programming language using this connector. Download for SSIS Download for SQL Server and ODBC Documentation |
Integrate OData with these applications
All
Data Integration
Database
BI & Reporting
Productivity
Programming Languages
Automation & Scripting
ODBC applications
Actions supported by OData Connector
OData Connector support following actions for REST API integration. If some actions are not listed below then you can easily edit Connector file and enhance out of the box functionality.
List Tables (JSON API)
[
Read more...
]
List Tables (XML API)
[
Read more...
]
Generic Read Data (JSON API)
[
Read more...
]
Parameter | Description |
---|---|
TableName |
|
Generic Read Data (XML API)
[
Read more...
]
Parameter | Description |
---|---|
TableName |
|
Read [$parent.name$]
[
Read more...
]
Generic Request
This is generic endpoint. Use this endpoint when some actions are not implemented by connector. Just enter partial URL (Required), Body, Method, Header etc. Most parameters are optional except URL. [
Read more...
]
Parameter | Description | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Url |
|
||||||||||||||||||||||||||
Body |
|
||||||||||||||||||||||||||
IsMultiPart |
|
||||||||||||||||||||||||||
Filter |
|
||||||||||||||||||||||||||
Headers |
|
Generic Request (Bulk Write)
This is a generic endpoint for bulk write purpose. Use this endpoint when some actions are not implemented by connector. Just enter partial URL (Required), Body, Method, Header etc. Most parameters are optional except URL. [
Read more...
]
Parameter | Description |
---|---|
Url |
|
IsMultiPart |
|
Filter |
|
Headers |
|
SQL examples for OData Connector
Use these example OData SQL queries within SQL Server or any other ODBC-compatible application:
Read all records from an JSON OData Service Table [ Read more... ]
SELECT * FROM Customers
Read all records from an XML OData Service Table [ Read more... ]
SELECT * FROM read_data_xml WITH(TableName='MyTable')
Filter records using server side criteria [ Read more... ]
SELECT * FROM Customers WITH( SearchCriteria='Country -eq ''USA'' ')
Filter records using client side criteria [ Read more... ]
SELECT * FROM Customers WHERE Country = 'USA'
List all Tables (JSON Based Format) [ Read more... ]
SELECT * FROM list_tables_json
List all Tables (XML Based Format) [ Read more... ]
SELECT * FROM list_tables_xml