Native SQL

Posts   
 
    
CMC
User
Posts: 1
Joined: 03-Dec-2004
# Posted on: 03-Dec-2004 13:30:50   

Is there a way to pass Native SQL through the Data access layer? flushed as I got to create a report with a lot of summary information, and counts(0), group by, order by and some aggrigate functions.

Otis avatar
Otis
LLBLGen Pro Team
Posts: 39933
Joined: 17-Aug-2003
# Posted on: 03-Dec-2004 14:07:56   

Create dynamic lists and use the aggregate functionality as well as the expression functionality, group by functionality etc. build into the runtime/generated code simple_smile See the documentatoin on these topics for details.

Frans Bouma | Lead developer LLBLGen Pro
jeffreygg
User
Posts: 805
Joined: 26-Oct-2003
# Posted on: 03-Dec-2004 22:56:22   

Otis wrote:

Create dynamic lists and use the aggregate functionality as well as the expression functionality, group by functionality etc. build into the runtime/generated code simple_smile See the documentatoin on these topics for details.

CMC: Careful though, non-aggregate SQL functions (e.g., datediff(), etc) are not supported as of yet...Frans did mention that it might be possible to implement those yourself right now, but I haven't personally tried it.

Jeff...