factor/libs/sql/tupledb.factor

15 lines
191 B
Factor
Raw Permalink Normal View History

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