data shapes

  • Thread starter Thread starter Support
  • Start date Start date
S

Support

Anyone with experience in data shapes (hierarchical recordsets) with SQL
stored procedures ?
I use them with ASP but I cannot find reference on how to use them in VB.NET

StrShape="SHAPE {{ CALL Sproc_TestTopShapeEmails('"& Var_Guid &"') }}
APPEND({{ CALL Sproc_TestBottomShapeEmails(?)}} RELATE intEMAILSunid TO
PARAMETER 0) As Thing"


Thanks
T
 
Support said:
Anyone with experience in data shapes (hierarchical recordsets) with SQL
stored procedures ?
I use them with ASP but I cannot find reference on how to use them in
VB.NET

StrShape="SHAPE {{ CALL Sproc_TestTopShapeEmails('"& Var_Guid &"') }}
APPEND({{ CALL Sproc_TestBottomShapeEmails(?)}} RELATE intEMAILSunid TO
PARAMETER 0) As Thing"

In VB.NET use DataSets instead. They are 100x easier and better.

David
 
Support said:
you mean use DataSets instead of data shaping ?
T

Yes. When data shaping grew up, it became DataSets. Strong-typed DataSets
support multiple related tables, with easy navigation along relationships,
sorting, filtering, and expressions which navigate the table relationships.

David
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top