Hello,
I am completely new to SmartGWT. For the following query,
SELECT COLUMN_A, SCORE FROM
(
SELECT A AS COLUMN_A,
UTL_MATCH.JARO_WINKLER_SIMILARITY('A', 'A') AS SCORE,
FNAME,
LNAME,
MI
FROM MY_CONTACTS
)
WHERE (LNAME||''||FNAME||''||MI) IS NULL OR
SCORE = 100
ORDER BY
FNAME DESC;
How can I write the <operationBinding> entry in my *ds.xml file ? Is there some documentation available to detail out this configuration steps?
I am completely new to SmartGWT. For the following query,
SELECT COLUMN_A, SCORE FROM
(
SELECT A AS COLUMN_A,
UTL_MATCH.JARO_WINKLER_SIMILARITY('A', 'A') AS SCORE,
FNAME,
LNAME,
MI
FROM MY_CONTACTS
)
WHERE (LNAME||''||FNAME||''||MI) IS NULL OR
SCORE = 100
ORDER BY
FNAME DESC;
How can I write the <operationBinding> entry in my *ds.xml file ? Is there some documentation available to detail out this configuration steps?
Comment