annotate base/database/package.lisp @ 295:ced696bd9871
add database-admin function to create composition identifiers from file
Ignore-this: ff758dc4be1061baebae471feee53f00
darcs-hash:20090820181949-16a00-389500f68b818adca481631fc7ae26be59a8ad4a.gz
author |
j.forth <j.forth@gold.ac.uk> |
date |
Thu, 20 Aug 2009 19:19:49 +0100 |
parents |
00d35eb70ef9 |
children |
ea45a3d0730c |
rev |
line source |
j@279
|
1 (cl:defpackage #:amuse-database-admin
|
j@279
|
2 (:use #:common-lisp #:amuse)
|
j@279
|
3 (:export #:connect-to-database ; database-connect
|
j@279
|
4 #:disconnect-from-database
|
j@279
|
5 #:*amuse-database*
|
j@279
|
6 #:make-db-option-file
|
j@287
|
7
|
j@287
|
8 #:make-new-dataset ; datasets-functions
|
j@287
|
9 #:assign-composition-to-dataset
|
j@295
|
10 #:assign-compositions-to-dataset
|
j@295
|
11 #:make-composition-identifiers-from-file
|
j@287
|
12 #:get-dataset
|
j@287
|
13 #:make-amuse-dataset-identifier
|
j@287
|
14
|
j@287
|
15 #:make-composition-identifier ; generics
|
j@287
|
16
|
j@287
|
17 #:register-new-implementation ; implementation functions
|
j@287
|
18 #:implementation-package
|
j@287
|
19 #:implementation-namestring
|
j@279
|
20 ))
|