Code: Select all
Query.sql.add('select * form tab where field = :field');
Query.parms[0].AsString := 'abc';
I found in direct mode
Code: Select all
Query.parms[0].AsAnsiString := 'abc';Is there a more elegant way, or do you solve this in next version, where I've not to change my sourcecode ?