So I have a string with a large sql query named sql_select
. And I have the following code in PowerBuilder 10.5:
dw_1.Modify( "DataWindow.Table.Select=' "+ sql_select + "'" )
messagebox("Something", dw_1.getsqlselect())
I see that I do not get the full query, i.e., some conditions do not exist! Even though the sql_select
is right. What is the problem?