Thanks for that, I'm just snooping around the Database stuff at the moment - I'm comfortable with SQL but I'm still learning the script.
Seems that 1 (number) is treated as equivalent to TRUE (bool). Useful to know... I think
Quote:
I couldn't see how to select column.record in a multi column recordset
I don't understand what you mean here. Normally columns are prefixed by tablename ... for example:
var rset = mydb.ExecuteSQL("select dept.deptno, dept.deptname from dept;")
then to use deptno or deptname: -
rset.FirstRecord();
mydeptnovariable = rset.deptno
kind of thing...

Dunno if that helps answer your question...(also hope this is right, I can't open Opus to test it at the moment because of another problem!)
Anyway, thanks for your help and I'll play around with it as soon as Opus is well again.
Cheers Melanie