annotate base/database/package.lisp @ 316:d9193c44b207

twiddle midi-db import example Ignore-this: cf975529b1d8ad8af507e7dd2144ccea darcs-hash:20100416180846-16a00-a91855cc12370a9198448353f4438647d4cdfdae.gz
author j.forth <j.forth@gold.ac.uk>
date Fri, 16 Apr 2010 19:08:46 +0100
parents 7038c3dc0a5a
children 6a3adca16910
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@309 16 #:list-collections
j@309 17 #:list-compositions
j@287 18
j@287 19 #:register-new-implementation ; implementation functions
j@287 20 #:implementation-package
j@287 21 #:implementation-namestring
j@279 22 ))