We are proud to share our inclusion in the 2024 Gartner Magic Quadrant for Data Integration Tools. We believe this recognition reflects the differentiated business outcomes CData delivers to our customers.
Get the Report →Add WooCommerce Data to Informatica Enterprise Data Catalog
Use the CData JDBC Driver for WooCommerce with the Informatica Enterprise Data Catalog to classify and organize data.
Informatica provides a powerful, elegant means of transporting and transforming your data. By utilizing the CData JDBC driver for WooCommerce, you are gaining access to a driver based on industry-proven standards that integrates seamlessly with Informatica's Enterprise Data Catalog. This tutorial shows how to classify and organize WooCommerce data across any environment.
Load the JDBC Driver
To load the JDBC Driver:
- Install the JDBC Driver on the host running Informatica. For this article, it is assumed that the driver was installed into cdata.jdbc.woocommerce.WooCommerceDriver.
- Navigate to the JDBC install directory and create a zip file called genericJDBC.zip containing the driver and its license file.
- Move the genericJDBC.zip file into the Catalog Service directory within Informatica. For this article, it is assumed that Informatica is installed into /opt/informatica. Working in this folder will probably require root permissions, so make sure to su or sudo to root before continuing.
- Edit the custom deployment configuration to unpack the zip file.
- Refresh the Catalog Service from the Admin console.
$ java -jar setup.jar
$ cd ~/cdata-jdbc-driver-for-woocommerce/lib
$ zip genericJDBC.zip cdata.jdbc.woocommerce.jar cdata.jdbc.woocommerce.lic
# mv genericJDBC.zip /opt/informatica/services/CatalogService/ScannerBinaries
# cd /opt/informatica/services/CatalogService/ScannerBinaries/CustomDeployer/
# nano scannerDeployer.xml
After unpacking the existing ExecutionContextProperty nodes, add a new ExecutionContextProperty node with this content.
<ExecutionContextProperty
isLocationProperty="true"
dependencyToUnpack="genericJDBC.zip">
<PropertyName>JDBCScanner_DriverLocation</PropertyName>
<PropertyValue>scanner_miti/genericJDBC/Drivers</PropertyValue>
</ExecutionContextProperty>
Configure the JDBC Resource
To configure the JDBC resource:
- Open the Catalog administrator and add a new JDBC resource with the following properties:
- Driver Class: cdata.jdbc.woocommerce.WooCommerceDriver
- URL: jdbc.woocommerce:Url=https://example.com/; ConsumerKey=ck_ec52c76185c088ecaa3145287c8acba55a6f59ad; ConsumerSecret=cs_9fde14bf57126156701a7563fc87575713c355e5; InitiateOAuth=GETANDREFRESH;
- ConsumerKey
- ConsumerSecret
- Username: user
- Password: password
- Configure the metadata options to perform at least one source metadata scan. This scan uses the driver to determine what tables, views, and stored procedures are available through the service.
- Source Metadata: Enable this option.
- Catalog: Set this to the appropriate catalog for multi-catalog data sources. Otherwise, set this to CData.
- Schema: Set this to the appropriate schema for multi-schema data sources. Otherwise, set this to the name of the service (for example, Couchbase).
- Case-sensitivity: Generally this option should be disabled. Enable it only for data sources which are case-sensitive.
- Import stored procedures: Enable this if you want to import stored procedure definitions in addition to tables and views.
- Complete the driver configuration, optionally configuring custom attributes and a scanner schedule.
- Perform the metadata scan by navigating to the Monitoring tab and clicking Run. Depending upon the data source, this may takes a few minutes.
WooCommerce supports the following authentication methods: one-legged OAuth1.0 Authentication and standard OAuth2.0 Authentication.
Connecting using one-legged OAuth 1.0 Authentication
Specify the following properties (NOTE: the below credentials are generated from WooCommerce settings page and should not be confused with the credentials generated by using WordPress OAuth2.0 plugin):
Connecting using WordPress OAuth 2.0 Authentication
Typical additional connection string properties follow:
JDBC;MSTR_JDBC_JAR_FOLDER=PATH\TO\JAR\;DRIVER=cdata.jdbc.woocommerce.WooCommerceDriver;URL={jdbc:woocommerce:Url=https://example.com/; ConsumerKey=ck_ec52c76185c088ecaa3145287c8acba55a6f59ad; ConsumerSecret=cs_9fde14bf57126156701a7563fc87575713c355e5; };
Note that the Username and Password properties are required, even if the driver you are using does not require them. In those cases, you can enter a placeholder value instead.
Other metadata scanners may be enabled as desired.
When the scan is complete, a summary of all of the metadata objects is displayed along with the status of the Metadata Load job. If any errors occur, you can open the Log Location link for the job to see the errors reported by Informatica or the driver.
Validate the Discovered Metadata
Open the Catalog Service browser to view the metadata extracted from the data source. Depending upon the options you selected when configuring the metadata scanner, you may see any combination of tables, views, and stored procedures for the resource you defined.