Module: sql-odbc-implementation Author: eec Copyright: Original Code is Copyright (c) 1995-2004 Functional Objects, Inc. All rights reserved. License: Functional Objects Library Public License Version 1.0 Dual-license: GNU Lesser General Public License Warranty: Distributed WITHOUT WARRANTY OF ANY KIND // $HopeName: !user.dylan(D-kan.1) $ define concrete class () slot user-name :: , init-keyword: user-name:, init-value: ""; slot password :: , init-keyword: password:, init-value: ""; end class; define method make-dbms-specific (type == , dbms :: , #rest more-args) => (user :: ) apply(make, , more-args); end method;