[Help-glpk] changes in sql table driver

2009-11-05 Thread Andrew Makhorin
Hi Xypron, Is it possible to make changes in the sql table driver in order to concatenate some arguments (marked in some way) to construct the resulting sql statement? This would allow processing sql statements which are longer than 100 chars without changes in the language and in the translator.

Re: [Help-glpk] changes in sql table driver

2009-11-07 Thread Xypron
GLPK does not support strings exceeding 100 characters. This is too short for many SQL statements. I have made the necessary changes to support table instructions with SQL statements spread over multiple strings. The following syntax is used: /"The second argument and all following are consider

Re: [Help-glpk] changes in sql table driver

2009-11-07 Thread Andrew Makhorin
Hi Xypron, > GLPK does not support strings exceeding 100 characters. This is too > short for many SQL statements. > I have made the necessary changes to support table instructions with > SQL statements spread over multiple strings. Thank you very much. I included your changes in the glpk codeba