using ics.catalogmanager on custom table
Hi guys,
I have created an custom table in same schema as of WCS by using SQL command from SQL developer ("create tablename......" etc.). with following col names where I have written seq before any insert operation to generate ID which sits in 'rid' col:
column name | type | nullable |
RID | NUMBER | No |
SITE_PREFIX | VARCHAR2(32 BYTE) | Yes |
USERNAME | VARCHAR2(50 BYTE) | Yes |
VARCHAR2(50 BYTE) | Yes | |
CONTACT | NUMBER | Yes |
FUELS_XML | CLOB | Yes |
USERTYPE | VARCHAR2(1 BYTE) | Yes |
SUBMIT_TIME | VARCHAR2(100 BYTE) | Yes |
Now, I have a application where on button click I want to delete the entry from the above table. After little finding and help from OTN I found that the call to delete code ( that I have in another cs element ) on button click can only be done through xhr object (get call) as I want to refresh and remain on the same page.