Hi
I have made my first dOOdad based application live, but I needed to make some changes to OleDbDynamicQuery.cs and BusinessEntity.cs so that DB2 would be happy with SQL. DB2 doesnt like [ and ] around table and column names.
Obviously I didnt want to change the framework itself, but I had to, otherwise it wouldnt have worked.
The following is an example of the change:
columnName = \"[\" + wItem.Column + \"]\";
changed to:
columnName = wItem.Column;
Can we create a property called DoesntLikeSquareBrackets that if set to true wouldn't try to create square brackets around table names and columns?
Any ideas?
Thanks
Jean-Pierre
