offtopic1: I don't own a mac but it seems that there are binaries for mac 
ready (instead of being )
offtopic: the choice to use a setpoint is entirely up to you: the same 
exact functionality (although a little bit slower, depending on the amount 
of data) can very well be replicated with a tailored insert (i.e. before 
loading data that may be there already, checking what data is already 
there) or - unless you need nested transactions - with a
 
db.commit()
try: 
    your insert statement
    db.commit()
except: 
   db.rollback()

block, without any hassle in discerning db dialects. 

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to