annotate implementations/geerdes/connect.lisp @ 195:f0e742e8de06
The MTP implementation of AMUSE:MONODY now uses the voice of the first event in the piece.
darcs-hash:20090723085710-c0ce4-0324442e9897c7a903fa20cfd16d18f880718439.gz
author |
Marcus Pearce <m.pearce@gold.ac.uk> |
date |
Thu, 23 Jul 2009 09:57:10 +0100 |
parents |
4d06910b6f0f |
children |
|
rev |
line source |
d@88
|
1 (in-package #:amuse-geerdes)
|
d@88
|
2
|
d@88
|
3 ;; N.B. This file contains an access password for the database in
|
d@88
|
4 ;; plain text...
|
d@88
|
5
|
d@88
|
6 (defun get-amuse-connection ()
|
j@191
|
7 (warn "This function should be removed, use connect-to-database instead.")
|
d@88
|
8 (clsql:connect '("vaughan-williams.doc.gold.ac.uk" "amuse" "LispMidi" "clsql")
|
d@88
|
9 :if-exists :old :database-type :mysql))
|
d@88
|
10
|
d@152
|
11
|