I am creating a new datawindow using a SQL Select.
Because of some limitations in SQLServer, I need start with a WITH (Common Table Expression)
I can't seem to get PowerBuilder to understand the result set and get no columns (Or PB Crash) PB12.6
For example:
with hello ( descr, mydate)
as ( select 'Right now' , getdate() )
select * from hello