X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=examples%2Fclsql-tutorial.lisp;h=0971d7201a89d0f310d244f23ee0b792caf014a7;hp=7560f9a68d6f470987d4ab91acd66e50214f3ea9;hb=e12e49ba39110f4a34def97d27bc8432f6de8665;hpb=02ec8bd400759fddb0deedcc21616b693274756b diff --git a/examples/clsql-tutorial.lisp b/examples/clsql-tutorial.lisp index 7560f9a..0971d72 100644 --- a/examples/clsql-tutorial.lisp +++ b/examples/clsql-tutorial.lisp @@ -4,7 +4,8 @@ ;; You must set these variables to appropriate values. (defvar *tutorial-database-type* nil - "Possible values are :postgresql,:postgresql-socket :mysql, :oracle, :odbc or :sqlite") + "Possible values are :postgresql,:postgresql-socket :mysql, +:oracle, :odbc, :aodbc or :sqlite") (defvar *tutorial-database-name* "clsqltut" "The name of the database we will work in.") (defvar *tutorial-database-user* "" @@ -90,7 +91,7 @@ ,*tutorial-database-user* ,*tutorial-database-password*) :database-type *tutorial-database-type*)) - ((:odbc :oracle) + ((:odbc :aodbc :oracle) (clsql:connect `(,*tutorial-database-name* ,*tutorial-database-user* ,*tutorial-database-password*)