fix usings
parent
29f633c7d1
commit
e270db3768
|
@ -5,7 +5,7 @@ kernel math math.parser namespaces make prettyprint quotations
|
||||||
sequences debugger db db.postgresql.lib db.postgresql.ffi
|
sequences debugger db db.postgresql.lib db.postgresql.ffi
|
||||||
db.tuples db.types tools.annotations math.ranges
|
db.tuples db.types tools.annotations math.ranges
|
||||||
combinators classes locals words tools.walker
|
combinators classes locals words tools.walker
|
||||||
nmake accessors random db.queries destructors ;
|
nmake accessors random db.queries destructors db.tuples.private ;
|
||||||
USE: tools.walker
|
USE: tools.walker
|
||||||
IN: db.postgresql
|
IN: db.postgresql
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
USING: accessors kernel math namespaces make sequences random
|
USING: accessors kernel math namespaces make sequences random
|
||||||
strings math.parser math.intervals combinators math.bitwise
|
strings math.parser math.intervals combinators math.bitwise
|
||||||
nmake db db.tuples db.types db.sql classes words shuffle arrays
|
nmake db db.tuples db.types db.sql classes words shuffle arrays
|
||||||
destructors continuations ;
|
destructors continuations db.tuples.private ;
|
||||||
IN: db.queries
|
IN: db.queries
|
||||||
|
|
||||||
GENERIC: where ( specs obj -- )
|
GENERIC: where ( specs obj -- )
|
||||||
|
|
|
@ -5,7 +5,7 @@ io.files kernel math math.parser namespaces prettyprint
|
||||||
sequences strings classes.tuple alien.c-types continuations
|
sequences strings classes.tuple alien.c-types continuations
|
||||||
db.sqlite.lib db.sqlite.ffi db.tuples words db.types combinators
|
db.sqlite.lib db.sqlite.ffi db.tuples words db.types combinators
|
||||||
math.intervals io nmake accessors vectors math.ranges random
|
math.intervals io nmake accessors vectors math.ranges random
|
||||||
math.bitwise db.queries destructors ;
|
math.bitwise db.queries destructors db.tuples.private ;
|
||||||
IN: db.sqlite
|
IN: db.sqlite
|
||||||
|
|
||||||
TUPLE: sqlite-db < db path ;
|
TUPLE: sqlite-db < db path ;
|
||||||
|
|
|
@ -100,7 +100,8 @@ ARTICLE: "db-tuples" "High-level tuple/database integration"
|
||||||
{ $subsection "db-tuples-tutorial" }
|
{ $subsection "db-tuples-tutorial" }
|
||||||
"Useful words:"
|
"Useful words:"
|
||||||
{ $subsection "db-tuples-words" }
|
{ $subsection "db-tuples-words" }
|
||||||
|
"For porting db.tuples to other databases:"
|
||||||
|
{ $subsection "db-tuples-protocol" }
|
||||||
;
|
;
|
||||||
|
|
||||||
ARTICLE: "db-tuples-words" "High-level tuple/database words"
|
ARTICLE: "db-tuples-words" "High-level tuple/database words"
|
||||||
|
|
|
@ -4,7 +4,7 @@ USING: io.files kernel tools.test db db.tuples classes
|
||||||
db.types continuations namespaces math math.ranges
|
db.types continuations namespaces math math.ranges
|
||||||
prettyprint calendar sequences db.sqlite math.intervals
|
prettyprint calendar sequences db.sqlite math.intervals
|
||||||
db.postgresql accessors random math.bitwise
|
db.postgresql accessors random math.bitwise
|
||||||
math.ranges strings urls fry ;
|
math.ranges strings urls fry db.tuples.private ;
|
||||||
IN: db.tuples.tests
|
IN: db.tuples.tests
|
||||||
|
|
||||||
TUPLE: person the-id the-name the-number the-real
|
TUPLE: person the-id the-name the-number the-real
|
||||||
|
|
Loading…
Reference in New Issue