parent
c86e164b03
commit
d93403a257
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2018 the original author or authors.
|
* Copyright 2002-2020 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -42,18 +42,18 @@ public final class CallMetaDataProviderFactory {
|
||||||
public static final List<String> supportedDatabaseProductsForProcedures = Arrays.asList(
|
public static final List<String> supportedDatabaseProductsForProcedures = Arrays.asList(
|
||||||
"Apache Derby",
|
"Apache Derby",
|
||||||
"DB2",
|
"DB2",
|
||||||
"MySQL",
|
"Informix Dynamic Server",
|
||||||
"Microsoft SQL Server",
|
"Microsoft SQL Server",
|
||||||
|
"MySQL",
|
||||||
"Oracle",
|
"Oracle",
|
||||||
"PostgreSQL",
|
"PostgreSQL",
|
||||||
"Sybase",
|
"Sybase"
|
||||||
"Informix Dynamic Server"
|
|
||||||
);
|
);
|
||||||
|
|
||||||
/** List of supported database products for function calls. */
|
/** List of supported database products for function calls. */
|
||||||
public static final List<String> supportedDatabaseProductsForFunctions = Arrays.asList(
|
public static final List<String> supportedDatabaseProductsForFunctions = Arrays.asList(
|
||||||
"MySQL",
|
|
||||||
"Microsoft SQL Server",
|
"Microsoft SQL Server",
|
||||||
|
"MySQL",
|
||||||
"Oracle",
|
"Oracle",
|
||||||
"PostgreSQL"
|
"PostgreSQL"
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue