Juergen Hoeller
f011e58f90
Polishing
5 years ago
Juergen Hoeller
d8b7a593c5
Individually apply the SQL type from each SqlParameterSource argument
...
Closes gh-26071
6 years ago
Juergen Hoeller
7881329cf7
Polishing
6 years ago
Juergen Hoeller
d12996a6a8
Polishing
6 years ago
Juergen Hoeller
e028ef8170
Add MariaDB to the supported database products for functions as well
...
Closes gh-25811
6 years ago
Juergen Hoeller
392ad09990
Add MariaDB to the list of supported database products for procedures
...
Closes gh-25811
6 years ago
Juergen Hoeller
e797398b10
CallParameterMetaData detects function return parameter specifically
...
Closes gh-25588
6 years ago
Juergen Hoeller
939c76c4a5
Revise documentation notes on getParameterType performance issues
...
See gh-25679
6 years ago
Juergen Hoeller
40bf83c9e5
Restore original 4.x behavior for initialization of function return name
...
Closes gh-25707
6 years ago
Juergen Hoeller
670b9fd60b
Retry SQLErrorCodesFactory retrieval if DatabaseMetaData access failed
...
Includes deprecation of JdbcUtils.extractDatabaseMetaData(DataSource, String) in favor of the now generified version of extractDatabaseMetaData(DataSource, DatabaseMetaDataCallback).
Closes gh-25681
Closes gh-25686
6 years ago
Juergen Hoeller
bb9e79daa7
Polishing
6 years ago
Juergen Hoeller
94eee6a32a
Provide access to AbstractRoutingDataSource's resolved target DataSources
...
Closes gh-25544
6 years ago
Juergen Hoeller
43e315f10c
Unwrap SqlParameterValue for disposable value detection in cleanupParameters
...
Closes gh-22972
6 years ago
Juergen Hoeller
30bf870810
Check JDBC 4 getFunctions (for compatibility with PostgreSQL driver 42.2.11)
...
Closes gh-25399
6 years ago
Juergen Hoeller
08474aa921
Clarify JDBC-defined negative values returned from batchUpdate
...
Closes gh-25138
6 years ago
Juergen Hoeller
27d5fdc5aa
Polishing
6 years ago
Juergen Hoeller
4018b462f1
JdbcOperations polishing (backported from master)
6 years ago
Juergen Hoeller
fe33822fa7
Polishing
6 years ago
Juergen Hoeller
251501587b
Consistent nullability of arguments array in JdbcOperations/Template
...
Closes gh-24839
6 years ago
Juergen Hoeller
6177e38eb6
Close-suppressing Connection proxy exposes target isClosed() state
...
Closes gh-24853
6 years ago
Sam Brannen
e26764d249
Remove duplicate words in documentation and polish Javadoc
6 years ago
Qimiao Chen
7c831d2ef4
Replace anonymous inner classes with lambdas in tests
...
Closes gh-24808
6 years ago
Juergen Hoeller
910d2788e9
Polishing
6 years ago
Sam Brannen
5e1e689739
Polishing
6 years ago
Qimiao Chen
5f2e298c08
Extract isDebugEnabled() checks to local variables
...
Closes gh-24683
6 years ago
Juergen Hoeller
6db20eb773
Avoid package import cycles
6 years ago
Sam Brannen
c2367b3ad2
Polish contribution
...
See gh-24383
6 years ago
Hyunjin Choi
1acf5a7424
Use dedicated catch block for ScriptException
...
Closes gh-24383
6 years ago
Sam Brannen
7575616d26
Update copyright date
...
See gh-24385
6 years ago
Hyunjin Choi
b4cf88499c
Use try-with-resource in ScriptUtils
...
Closes gh-24385
6 years ago
Juergen Hoeller
d93403a257
Alphabetical order for database names
...
See gh-24443
6 years ago
wilrosco
c86e164b03
Add Informix to the list of supported database products for procedure calls
...
Hi guys,
We're facing an issue in our application when we try to call a procedure in Informix database,
our app uses standard JDBC (spring-jdbc and com.ibm.informix.jdbc.4.50.3) without Hibernate
to connect to the database
Issue:
When we trying to execute any procedure call in our Informix database there is no data returned.
Diagnostic:
It points to the Java class called CallMetaDataProviderFactory in spring-jdbc project.
Taking a look of this class there is no explicit support for Informix procedure calls, so I added "Informix Dynamic Server" to the
list of supported databases and now I can execute procedures call without issues.
Basically I added the line "Informix Dynamic Server" to the list called "supportedDatabaseProductsForProcedures"
of CallMetaDataProviderFactory class in my local environment and it worked as expected.
I really appreciate any feedback/suggestion for this approach due we would like to continue using the framework
normally in our development without losing updates using a workaround in our end.
Many thanks in advance.
6 years ago
Juergen Hoeller
60c7af3625
Mention HikariCP next to DBCP and C3P0 in connection pool notes
...
Closes gh-24405
6 years ago
Sam Brannen
734db23f4e
Fix Checkstyle violation
...
See gh-gh-24358
6 years ago
Sam Brannen
f527ca7515
Update copyright date
6 years ago
hyeonisism
89b8449999
Simplify getParsedSql() method in NamedParameterJdbcTemplate
...
Closes gh-24358
6 years ago
Sam Brannen
798744838c
Revise exception handling in AbstractEmbeddedDatabaseConfigurer
...
See gh-24337
6 years ago
Sam Brannen
7cd4ddf5fc
Rename test fixture package in spring-beans
...
See gh-23550
6 years ago
Sam Brannen
4260c34b47
Rename test fixture package in spring-core
...
See gh-23550
6 years ago
Sam Brannen
61d4ee594d
Use Gradle test fixture support for spring-beans and spring-context
...
See gh-23550
6 years ago
Sam Brannen
5718bf424b
Use Gradle test fixture support for spring-core
...
See gh-23550
6 years ago
Juergen Hoeller
02b40223e5
Polishing
6 years ago
perceptron8
dafe57fc6e
Add BeanPropertyRowMapper.newInstance(mappedClass, conversionService)
...
Similar to SingleColumnRowMapper.newInstance(requiredType,
conversionService) which was added in #1678 .
6 years ago
Juergen Hoeller
a5f2d8c222
Mark SqlRowSet accessor methods as nullable (for alignment with JDBC)
...
Closes gh-24042
7 years ago
Juergen Hoeller
990bfd8772
Support for new MySQL 8 error code 3572
...
Closes gh-23972
7 years ago
Juergen Hoeller
773b2f06a1
Avoid Connection.isReadOnly() call in resetConnectionAfterTransaction
...
Closes gh-23747
7 years ago
Juergen Hoeller
2861fc65bd
Polishing
7 years ago
Kwon Young Jae
6063c00e4e
Delete obsolete comment in RowMapperTests
...
Closes gh-23643
7 years ago
Phillip Webb
d945ae9191
Add blank line between java and javax imports
...
See gh-23539
Co-authored-by: Sam Brannen <sbrannen@pivotal.io>
7 years ago
康智冬
0d742cf3d0
Fix typos related to indefinite articles for SQL acronym
...
Closes gh-23603
7 years ago