/*
 * File		: SqlServerDatabase
 * 
 * Sccs		: %W% 
 *
 * Dated	: %D% %T% 
 *
 * Owner	: Graeme Burnett 
 *
 * Continuus
 * 
 * Type		: %cvtype: %
 * Created by	: %created_by: %
 * Date Created	: %date_created: %
 * Date Modified: %date_modified: %
 * Derived by	: %derived_by: %
 * File/Version	: %filespec: %
 *
 */

package UK.co.demon.xinit.jdbc.SqlServerDatabase;

import UK.co.demon.xinit.jdbc.*;

public
class SqlServerDatabase 
    extends UK.co.demon.xinit.jdbc.JdbcDatabase
{
    public SqlServerDatabase()
    {
	super();

	this.jdbc_driver = MS_JDBC_DRIVER;
	this.jdbc_url = MS_JDBC_URL;
	this.jdbc_description = MS_JDBC_URL;
    }
}



Last Updated