Fabric Studio enables you to automatically generate Java code that holds the basic components of a Web Service function.
Component |
Description |
String Declaration |
String declaration of the SQL statement’s structure which includes the Column Name, Table Name, Join with Other Tables, and other SQL syntax elements. For example, to generate an SQL statement to retrieve the CUSTOMER ID, SSN and FIRST_NAME from the CUSTOMER table:
|
Fetch Statement |
Fabric gets a specific instance and fetches data from Fabric using the declared SQL statement. Examples:
|
Return Statement |
Terminates the execution of the Web Service function. Close the statement or connections if needed and return rs; |
Fabric Studio enables you to automatically generate Java code that holds the basic components of a Web Service function.
Component |
Description |
String Declaration |
String declaration of the SQL statement’s structure which includes the Column Name, Table Name, Join with Other Tables, and other SQL syntax elements. For example, to generate an SQL statement to retrieve the CUSTOMER ID, SSN and FIRST_NAME from the CUSTOMER table:
|
Fetch Statement |
Fabric gets a specific instance and fetches data from Fabric using the declared SQL statement. Examples:
|
Return Statement |
Terminates the execution of the Web Service function. Close the statement or connections if needed and return rs; |