* deactivate database type with no maintainer, further cleanup will happen later.
This commit is contained in:
parent
f9472522b8
commit
02b1e1d17d
|
@ -818,13 +818,16 @@ public class ConfigurationData
|
||||||
|
|
||||||
// Create Connection
|
// Create Connection
|
||||||
String ccType = Database.DB_ORACLE;
|
String ccType = Database.DB_ORACLE;
|
||||||
|
if (getDatabaseType().equals(DBTYPE_POSTGRESQL))
|
||||||
|
ccType = Database.DB_POSTGRESQL;
|
||||||
|
/*
|
||||||
if (getDatabaseType().equals(DBTYPE_DERBY))
|
if (getDatabaseType().equals(DBTYPE_DERBY))
|
||||||
ccType = Database.DB_DERBY;
|
ccType = Database.DB_DERBY;
|
||||||
//begin vpj-cd e-evolution 03/17/2005 PostgreSQL
|
//begin vpj-cd e-evolution 03/17/2005 PostgreSQL
|
||||||
else if (getDatabaseType().equals(DBTYPE_POSTGRESQL))
|
else if (getDatabaseType().equals(DBTYPE_POSTGRESQL))
|
||||||
ccType = Database.DB_POSTGRESQL;
|
ccType = Database.DB_POSTGRESQL;
|
||||||
else if (getDatabaseType().equals(DBTYPE_FYRACLE))
|
else if (getDatabaseType().equals(DBTYPE_FYRACLE))
|
||||||
ccType = Database.DB_FYRACLE;
|
ccType = Database.DB_FYRACLE;*/
|
||||||
|
|
||||||
//end vpj-cd e-evolution 03/17/2005 PostgreSQL
|
//end vpj-cd e-evolution 03/17/2005 PostgreSQL
|
||||||
CConnection cc = null;
|
CConnection cc = null;
|
||||||
|
@ -1290,7 +1293,7 @@ public class ConfigurationData
|
||||||
*************************************************************************/
|
*************************************************************************/
|
||||||
|
|
||||||
/** Derby/Cloudscape */
|
/** Derby/Cloudscape */
|
||||||
private static String DBTYPE_DERBY = "<derby>";
|
//private static String DBTYPE_DERBY = "<derby>";
|
||||||
/** Oracle directory */
|
/** Oracle directory */
|
||||||
private static String DBTYPE_ORACLE = "oracle";
|
private static String DBTYPE_ORACLE = "oracle";
|
||||||
/** Oracle XP */
|
/** Oracle XP */
|
||||||
|
@ -1299,8 +1302,8 @@ public class ConfigurationData
|
||||||
// begin e-evolution vpj-cd 02/07/2005 PostgreSQL
|
// begin e-evolution vpj-cd 02/07/2005 PostgreSQL
|
||||||
/** PostgreSQL */
|
/** PostgreSQL */
|
||||||
private static String DBTYPE_POSTGRESQL = "postgresql";
|
private static String DBTYPE_POSTGRESQL = "postgresql";
|
||||||
private static String DBTYPE_EDB = "enterprisedb";
|
//private static String DBTYPE_EDB = "enterprisedb";
|
||||||
private static String DBTYPE_FYRACLE = "fyracle";
|
//private static String DBTYPE_FYRACLE = "fyracle";
|
||||||
|
|
||||||
// end e-evolution vpj-cd 02/07/2005 PostgreSQL
|
// end e-evolution vpj-cd 02/07/2005 PostgreSQL
|
||||||
|
|
||||||
|
@ -1308,7 +1311,7 @@ public class ConfigurationData
|
||||||
static String[] DBTYPE = new String[]
|
static String[] DBTYPE = new String[]
|
||||||
{DBTYPE_ORACLEXE,
|
{DBTYPE_ORACLEXE,
|
||||||
DBTYPE_ORACLE,
|
DBTYPE_ORACLE,
|
||||||
DBTYPE_FYRACLE,
|
//DBTYPE_FYRACLE,
|
||||||
//begin e-evolution vpj-cd 02/07/2005 PostgreSQL
|
//begin e-evolution vpj-cd 02/07/2005 PostgreSQL
|
||||||
DBTYPE_POSTGRESQL
|
DBTYPE_POSTGRESQL
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue