view implementations/meredith/tests/import-raph-c-data.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 3c5bf3f7b7a0
children 6a3adca16910
line wrap: on
line source
(cl:in-package #:amuse-meredith)

(asdf:oos 'asdf:load-op 'amuse-meredith)

(connect-to-database :database-name "test")

;; Tell the database about the new implementation.
(amuse-database-admin:register-new-implementation *package*)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Add the datasets to the database
(create-meredith-tables *amuse-database*)

(import-bach-inv+sin *amuse-database*) ; FIXME: return an identifier.

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Retrieve compositions
(defparameter *bach*
  (get-composition (make-meredith-composition-identifier 1)))

(defparameter *bach-dataset*
  (get-dataset (make-amuse-dataset-identifier 1)))

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Tidy up
;;(drop-meredith-tables *amuse-database*)
(disconnect-from-database)