Hi all,
I have a Datasource definition that looks sth. like this:
Every time, this query is executed, a temporary MySQL variable must be set before, which is
Is there any elegant way to do this with smartgwt ?
Thanks a lot in advance
(I'm using v8.2p_2013-10-12/PowerEdition)
I have a Datasource definition that looks sth. like this:
Code:
<operationBindings>
<binding operationId="xyz" operationType="fetch">
<selectClause>
*
</selectClause>
<tableClause>
**Complex Table Clause**
</tableClause>
<whereClause>
$defaultWhereClause
</whereClause>
<orderClause>
Lastname
</orderClause>
</binding>
...Code:
SET SESSION group_concat_max_len = 1000000;Is there any elegant way to do this with smartgwt ?
Thanks a lot in advance
(I'm using v8.2p_2013-10-12/PowerEdition)