removing @Override for compatibility with java 1.6
[cdmlib.git] / cdmlib-persistence / src / main / java / eu / etaxonomy / cdm / database / types / SqlServer2000DatabaseType.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.cdm.database.types;
11
12 import eu.etaxonomy.cdm.database.ICdmDataSource;
13
14
15 /**
16 * @author a.mueller
17 *
18 */
19 public class SqlServer2000DatabaseType extends SqlServer2005DatabaseType {
20
21 //name
22 //protected String typeName = "SQL Server";
23
24 //driver class
25 //protected String classString = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
26
27 //url
28 // protected String urlString = "jdbc:microsoft:sqlserver://";
29
30 //hibernate dialect
31 // private String hibernateDialect = "SQLServerDialect";
32
33 public String getConnectionString(ICdmDataSource ds, int port, String instanceName){
34 //TODO check if instances exist for SQL Server 2000
35 return super.getConnectionString(ds, port, instanceName);
36 }
37
38 //Constructor
39 public SqlServer2000DatabaseType() {
40 init (typeName, classString, urlString, defaultPort, hibernateDialect );
41 }
42
43
44
45 }