Powerbuilder 7.0.3
SQL 2005
I have a datawindow with a super basic select:
I needed to filter out some values, so the select now looks like:
When i run the retrieve in the designer, it works fine. I then delete all the rows, and hit the debug window.
It then uses the old select and all the values show in the dropdown. I have exported the datawindow, and it shows the correct select.
I did a google for every combination of pwerbuilder datawindow sql that i could find, to no avail.
Thanks,
If [blue]you have problems[/blue], I want [green]source code[/green] AND [green]error messages[/green], none of this [red]"there was an error crap"[/red]
SQL 2005
I have a datawindow with a super basic select:
Code:
SELECT a.code , a.desc
FROM a
ORDER BY a.code ASC
I needed to filter out some values, so the select now looks like:
Code:
SELECT a.code , a.desc
FROM a
[b]WHERE code <> '0' and desc is not null[/b]
ORDER BY a.code ASC
When i run the retrieve in the designer, it works fine. I then delete all the rows, and hit the debug window.
It then uses the old select and all the values show in the dropdown. I have exported the datawindow, and it shows the correct select.
I did a google for every combination of pwerbuilder datawindow sql that i could find, to no avail.
Thanks,
If [blue]you have problems[/blue], I want [green]source code[/green] AND [green]error messages[/green], none of this [red]"there was an error crap"[/red]