How do I write service for case sensitive ??
Hello,
I want to compare database data and mashup data ,for this please suggest How do I write JavaScript service with case sensitive ??
Thanks in advance
Hello,
I want to compare database data and mashup data ,for this please suggest How do I write JavaScript service with case sensitive ??
Thanks in advance
Hi,
Following snippet can be used for the case sensitive search on infotable.
// result: INFOTABLE
var result = Resources["InfoTableFunctions"].EQFilter({
fieldName: undefined /* STRING */,
isCaseSensitive: undefined /* BOOLEAN */,
t: undefined /* INFOTABLE */,
value: undefined /* STRING */
});
Inputs:
fieldName: "<Name of column that needs to be compared>"
isCaseSensitive: true/false based on requirement
t: Infotable that contains data
value: <value that needs to be compared>
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.