annotate implementations/geerdes/connect.lisp @ 205:5ff310be4942

Fix bug in during method, and make it the same as Allen (1983).
author Jamie Forth <j.forth@gold.ac.uk>
date Wed, 26 Jan 2011 10:44:29 +0000
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