Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: diasroshanPosted on 2009-06-03 at 23:37:10ID: 24544047
Hi,
_syntax, ls_presentation, ls_errors)
QLCA)
this is how i do it,
String ls_errors, ls_sql_syntax, ls_path, ls_trs_type
String ls_presentation, ls_dwsyntax
Long ll_deal, ll_key, ll_seq, ll_type
DataStore ds_export
ds_export = Create DataStore
ls_sql_syntax = "SELECT * FROM TABLENAME WHERE...." //ur select goes here
ls_presentation = "style(type=grid)"
ls_dwsyntax = SQLCA.SyntaxFromSQL(ls_sql
IF Len(ls_errors) > 0 THEN
MessageBox("Caution", "SyntaxFromSQL caused these Errors: " + ls_errors)
RETURN
END IF
ds_export.Create( ls_dwsyntax, ls_errors)
IF Len(ls_errors) > 0 THEN
MessageBox("Caution", "Create caused these Errors: " + ls_errors)
RETURN
END IF
ds_export.SetTransObject(S
ds_export.Retrieve( )
Cheers,
Rosh