Thank you for your suggestion
I've just commited these 2 changes related to your request:
Quote:-added new SQL.getAllRowsCols method
-SQL.getRows,getRowsCols and getRowsNum can now have specified "condition=S" which will ignore the condition
You can now specify "S" for the condition, or use *all* named method.
I think you can also specify "true" string as the condition to make it always work, however I haven't tested it.
BTW. If you're doing things like Memc<Str>().New() = "accountName"
then you actually pass a "Str" object, and not "Memc" object.
This is because you're using operator "=" which returns Str.
This works fine because Memp is smart enough to accept single objects, in this case Str parameter as well.
So you can just pass "accountName" without using the Memc.. thing.
If you however wish to pass Memc, for example to include multiple elements, you can do it that way:
Memc<Str>().add("first").add("second")