Omnata provides a native Apex interfaces to your data warehouse. This allows a Salesforce developer to query external data as needed, without needing to build and maintain a custom API integration, or handle the various data type conversions.
Only Snowflake is supported.
The Apex interface is closer to the wire than Salesforce Connect, so different product APIs return different classes.
Prerequisites
Ensure that package installation and initial connection configuration has been performed.
Once complete, data can be queried via custom Apex code by referencing the connection by name.
Example code (New Snowflake API)
omnata_sf.SnowflakeConnection connection =newomnata_sf.SnowflakeConnection('Snowflake');List<omnata_sf.SnowflakeQueryBinding> queryBindings =newList<omnata_sf.SnowflakeQueryBinding>();String testString ='A000001';queryBindings.add(newomnata_sf.SnowflakeQueryBinding(testString));omnata_sf.SnowflakeApiQueryResponse response =connection.executeQueryV2('select * from FINANCIAL_TRANSACTIONS where ACCOUNT_NUMBER=?',queryBindings);Integer totalRows =response.resultSetMetaData.numRows;List<List<String>> rowset =response.data;List<omnata_sf.SnowflakeApiQueryResponse.Rowtype> rowtypes =response.resultSetMetaData.rowtype;// If you don't need type conversion, this is the string representation straight from SnowflakeList<String> firstRow =rowset.get(0);String firstColumnValueOfFirstRow =firstRow.get(0);// Use this option to get a list of rows, with columns indexed by nameList<Map<String,Object>> allRowsWithNamedColumns =response.getAllRowsWithNamedColumns();// Use this option to get a list of rows, with columns indexed by positionList<List<Object>> allRowsWithOrdinalColumns =response.getAllRowsWithOrdinalPositions();
Example code (Old Snowflake API)
omnata_sf.SnowflakeConnection connection =newomnata_sf.SnowflakeConnection('Snowflake');List<omnata_sf.SnowflakeQueryBinding> queryBindings =newList<omnata_sf.SnowflakeQueryBinding>();String testString ='A000001';queryBindings.add(newomnata_sf.SnowflakeQueryBinding(testString));omnata_sf.SnowflakeSchemaResponse response =connection.executeQuery('select * from FINANCIAL_TRANSACTIONS where ACCOUNT_NUMBER=?',queryBindings);Integer totalRows =response.data.total;List<List<String>> rowset =response.data.rowset;List<omnata_sf.SnowflakeSchemaResponse.Rowtype> rowtypes =response.data.rowtype;// If you don't need type conversion, this is the string representation straight from SnowflakeList<String> firstRow =rowset.get(0);String firstColumnValueOfFirstRow =firstRow.get(0);// Use this option to get a list of rows, with columns indexed by nameList<Map<String,Object>> allRowsWithNamedColumns =response.getAllRowsWithNamedColumns();// Use this option to get a list of rows, with columns indexed by positionList<List<Object>> allRowsWithOrdinalColumns =response.getAllRowsWithOrdinalPositions();
Exceptions
The followings exceptions may be thrown by the executeQuery method:
ExternalObjectException if Snowflake returns an error message
omnata_sf.UnauthorizedException if the connection fails due to invalid credentials.
Mocking for tests
The containers that carry API responses are global classes, so that they can be mocked.
Below is an example Apex script where the response to a simple Snowflake query is mocked.
New Snowflake API
omnata_sf.SnowflakeApiQueryResponse mockResponse =new omnata_sf.SnowflakeApiQueryResponse();mockResponse.resultSetMetaData=new omnata_sf.SnowflakeApiQueryResponse.ResultSetMetaData();mockResponse.resultSetMetaData.numRows=2;mockResponse.resultSetMetaData.rowtype=newList<omnata_sf.SnowflakeApiQueryResponse.Rowtype>();omnata_sf.SnowflakeApiQueryResponse.Rowtype row1 =new omnata_sf.SnowflakeApiQueryResponse.Rowtype();row1.name='Column1';row1.type='VARCHAR';omnata_sf.SnowflakeApiQueryResponse.Rowtype row2 =new omnata_sf.SnowflakeApiQueryResponse.Rowtype();row2.name='Column2';row2.type='NUMBER';mockResponse.resultSetMetaData.rowtype.add(row1);mockResponse.resultSetMetaData.rowtype.add(row2);// data is a 2D matrix of the raw values Snowflake returnsmockResponse.data=newList<List<String>>();mockResponse.data.add(newList<String>{'AColumn1Value','123.45'});mockResponse.data.add(newList<String>{'AnotherColumn1Value','456.78'});// pass in the mock object, instead of a connection nameomnata_sf.SnowflakeConnection connection =new omnata_sf.SnowflakeConnection(mockResponse);// execute a query to get your own response object backomnata_sf.SnowflakeApiQueryResponse response =connection.executeQueryV2('doesnt matter what goes here, not sent to Snowflake',null);Integer totalRowsInt =response.resultSetMetaData.numRows;System.assertEquals(2,totalRowsInt);
Old Snowflake API
omnata_sf.SnowflakeSchemaResponse mockResponse =newomnata_sf.SnowflakeSchemaResponse();mockResponse.data=newomnata_sf.SnowflakeSchemaResponse.Data();mockResponse.data.rowtype=newList<omnata_sf.SnowflakeSchemaResponse.Rowtype>();// Add column metadataomnata_sf.SnowflakeSchemaResponse.Rowtype firstColumn =newomnata_sf.SnowflakeSchemaResponse.Rowtype();firstColumn.name='Column1';firstColumn.type_Z='VARCHAR'; // This is the Snowflake column's native data typefirstColumn.scale=100;mockResponse.data.rowtype.add(firstColumn);omnata_sf.SnowflakeSchemaResponse.Rowtype secondColumn =newomnata_sf.SnowflakeSchemaResponse.Rowtype();secondColumn.name='Column2';secondColumn.type_Z='FIXED';firstColumn.scale=10;firstColumn.precision=2;mockResponse.data.rowtype.add(secondColumn);omnata_sf.SnowflakeSchemaResponse.Rowtype thirdColumn =newomnata_sf.SnowflakeSchemaResponse.Rowtype();thirdColumn.name='Column3';thirdColumn.type_Z='BOOLEAN';mockResponse.data.rowtype.add(thirdColumn);omnata_sf.SnowflakeSchemaResponse.Rowtype fourthColumn =newomnata_sf.SnowflakeSchemaResponse.Rowtype();fourthColumn.name='Column4';fourthColumn.type_Z='TIMESTAMP_LTZ';mockResponse.data.rowtype.add(fourthColumn);// add row values, these are always just a 2D matrix of the raw values Snowflake returnsDateTime dt1 =DateTime.newInstanceGmt(2017,4,9,0,0,0);DateTime dt2 =DateTime.newInstanceGmt(2019,10,9,5,30,15);mockResponse.data.rowset=newList<List<String>>();mockResponse.data.rowset.add(newList<String>{'AColumn1Value','123.45','0',(dt1.getTime()/1000)+''}); // Snowflake returns epoch secondsmockResponse.data.rowset.add(newList<String>{'AnotherColumn1Value','456.78','1',(dt2.getTime()/1000)+''});mockResponse.data.total=2;// pass in the mock object, instead of a connection nameomnata_sf.SnowflakeConnection connection =newomnata_sf.SnowflakeConnection(mockResponse);// execute a query to get your own response object backomnata_sf.SnowflakeSchemaResponse response =connection.executeQuery('doesnt matter what goes here, not sent to Snowflake',null);Integer totalRowsInt =response.data.total;System.assertEquals(2,totalRowsInt);List<List<String>> rowset =response.data.rowset;List<omnata_sf.SnowflakeSchemaResponse.Rowtype> rowtypes =response.data.rowtype;// Use this option to get a list of rows, with columns indexed by nameList<Map<String,Object>> allRowsWithNamedColumns =response.getAllRowsWithNamedColumns();System.assertEquals('AColumn1Value',allRowsWithNamedColumns.get(0).get('Column1'));System.assertEquals(123.45,allRowsWithNamedColumns.get(0).get('Column2'));System.assertEquals(0,allRowsWithNamedColumns.get(0).get('Column3'));System.assertEquals(dt1,allRowsWithNamedColumns.get(0).get('Column4'));System.assertEquals('AnotherColumn1Value',allRowsWithNamedColumns.get(1).get('Column1'));System.assertEquals(456.78,allRowsWithNamedColumns.get(1).get('Column2'));System.assertEquals(1,allRowsWithNamedColumns.get(1).get('Column3'));System.assertEquals(dt2,allRowsWithNamedColumns.get(1).get('Column4'));System.debug('Completed successfully');