Hello.
I'm Daeho.
Please let me know about SQL expression in filtering condition.
I don't know how to define filter by using SQL Expression.
If you have any experience about that or best practice, please let me know that.
Thanks,
Regards
Daeho
Solved! Go to Solution.
Views
Replies
Total Likes
Hi Daeho,
This option was available in old neolane versions. Adobe introduced a new security patch in 6.1 which will not allow this. This can be enabled by updating allowSQLInjection in server configurations.
Read this for more details: General configurations
Regards,
Amit
Views
Replies
Total Likes
Hi Daeho,
This option was available in old neolane versions. Adobe introduced a new security patch in 6.1 which will not allow this. This can be enabled by updating allowSQLInjection in server configurations.
Read this for more details: General configurations
Regards,
Amit
Views
Replies
Total Likes
Thank you for your response.
I want use 'REGEXP' in Oracle.
So I tried to use SQL Expression.
Could you please any advice about this topic?
Thanks
Best Regards,
Daeho
Views
Replies
Total Likes
Hi,
Regex is not supported by ootb but i did some digging and you can use a regex like this if you are using PostgreSQL
// sample query using regEX ^\\d{8}
var queryCountPopulation = xtk.queryDef.create(
<queryDef schema="nms:recipient" operation="select">
<select>
<node expr="@mobilePhone" alias="@mobile"/>
</select>
<where>
<condition expr="@mobilePhone ~ '^\\d{8}'" boolOperator="AND"/>
</where>
</queryDef>);
var resCountPopulation = queryCountPopulation.ExecuteQuery();
logInfo(resCountPopulation);
alternatively,
<condition boolOperator="AND" compositeKey="" dependkey="" enabledIf="" expr="@mobilePhone ~ '^\\d{8}'"
internalId="554827878"/>
Above can be used in workflow by editing the xml
Views
Replies
Total Likes
Hi,
Wow!
Thank you so much for helping me.
Thanks,
Best Regards,
Daeho
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies