factor/libs/sql/tupledb.factor

15 lines
171 B
Factor
Raw Normal View History

2006-12-15 04:06:17 -05:00
USING: kernel math sql:utils ;
IN: sql
: save ( tuple -- )
dup "id" tuple-slot [
! update
] [
! insert
] if ;
: restore ( tuple -- )
;