Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: ANN: RebDB Pseudo-Relational Database

From: atruter:labyrinth:au at: 26-Jan-2004 21:39

Hi YekSoon,
> Is there a way to mix select and order clause in the db-select statement?
Ah, not sure what you're asking here, but if you want to use multiple refinements then that's OK: db-select/where/order/desc [date id] my-table [id < 5] id or, if you want to change the order in which they are provided, that's fine too: db-select/desc/order/where [date id] my-table id [id < 5] If that doesn't answer the question, please provide an example of the usage you are attempting. Thanks for taking the time to read the doco! ;) Regards, Ashley<