Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

connection json looks for all lowercase "jdbcurl", however, all documentation and messages refer to "jdbcUrl". Which should it be. #86

Closed
bmwilli opened this issue Mar 23, 2019 · 4 comments

Comments

@bmwilli
Copy link
Member

bmwilli commented Mar 23, 2019

The documentation for the "credentials" parameter states: This optional parameter specifies the JSON string that contains the jdbc credentials: username, password and jdbcUrl

The code, however is: jdbcUrl = (String)obj.get("jdbcurl");

I have verified that json with 'jdbcUrl' does not work, however, 'jdbcurl' does work.

I believe by convention since json is case sensitive the correct value is 'jdbcurl', however, to be consistent with the parameter names and messages, I believe sticking with "jdbcUrl" is the best approach.

Currently if the value is not present in the json, the message that will be printed reflects: JDBC_URL_NOT_EXIST=CDIST2803E ''jdbcUrl'' is required to create JDBC connection.

@brandtol
Copy link
Contributor

The reason for adding the credentials parameter was to allow using Cloud Service Credentials (for example for Db2 Warehouse service). The JSON string produced by the cloud service contains the lowercase version jdbcurl as key. So we should stick with the implementation, and fix the SPL doc.

@anouri
Copy link
Member

anouri commented Apr 15, 2019

We will support in the next release version also jdbcUrl in the JSON credentials file.

anouri pushed a commit that referenced this issue Apr 15, 2019
@anouri
Copy link
Member

anouri commented Apr 24, 2019

Corrected.
The credentials supports now 'jdbcurl' and also 'jdbcUrl'
Correction will be delivered in version 1.5.0

anouri added a commit that referenced this issue Apr 26, 2019
* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0
anouri added a commit that referenced this issue May 6, 2019
* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88
anouri added a commit that referenced this issue May 7, 2019
* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.
anouri added a commit that referenced this issue May 7, 2019
* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.
anouri added a commit that referenced this issue May 7, 2019
* JDBC: Merge develop to master (#90)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* develop to master #88

* JDBC merge develop to master (#91)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc updated.

* JDCB merge develop to master (#92)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* JDBC merge develop to master (#93)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.
@anouri
Copy link
Member

anouri commented May 7, 2019

Corrected in streamsx.jdbc version 1.5.0
https://github.com/IBMStreams/streamsx.jdbc/releases/tag/v1.5.0

@anouri anouri closed this as completed May 16, 2019
anouri added a commit that referenced this issue May 28, 2019
* JDBC: Merge develop to master (#90)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* develop to master #88

* JDBC merge develop to master (#91)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc updated.

* JDCB merge develop to master (#92)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* JDBC merge develop to master (#93)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* resolves #95 (#96)
anouri added a commit that referenced this issue Jun 13, 2019
* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* JDBC merge master to develop (#94)

* JDBC: Merge develop to master (#90)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* develop to master #88

* JDBC merge develop to master (#91)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc updated.

* JDCB merge develop to master (#92)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* JDBC merge develop to master (#93)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* merge master to develop

* JDBC merge master to develop (#97)

* JDBC: Merge develop to master (#90)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* develop to master #88

* JDBC merge develop to master (#91)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc updated.

* JDCB merge develop to master (#92)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* JDBC merge develop to master (#93)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* resolves #95 (#96)

* new parameter idleSessionTimeOut added #55

* add toolkit.xml to .gitignore

* removed toolkit.xml from samples

* The version of streamsx.jdbc increased 1.7.0

* check idleSessionTimeOut parameter #55

* check the parameter idleSessionTimeOut #55

* Support properties for keystore and truststore password (#99)

* Support properties for keystore and truststore password

* What is new in version 1.7.0 #55 #99
anouri added a commit that referenced this issue Feb 13, 2020
* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* JDBC merge master to develop (#94)

* JDBC: Merge develop to master (#90)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* develop to master #88

* JDBC merge develop to master (#91)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc updated.

* JDCB merge develop to master (#92)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* JDBC merge develop to master (#93)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* merge master to develop

* JDBC merge master to develop (#97)

* JDBC: Merge develop to master (#90)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* develop to master #88

* JDBC merge develop to master (#91)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc updated.

* JDCB merge develop to master (#92)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* JDBC merge develop to master (#93)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* Fix SPLDOC typo in checkConnection parameter #74

* Add new parameter jdbcCredentials

* Add new parameter jdbcCredentials

* info.xml updated parameter jdbcCredentials

* JDBC SPLDOC improved #76

* java.net.ConnectException not catched #57

* support application configuration

* exception handling improved.

* loop in exception handling fixed

* credentials is a string and not a file

* Document JDBC driver setup. #77

* corrections for #79 #78

* merge master to develop

* remove spldocs from develop branch

* removed lib from develop branch

* copy from master to develop

* merge jdbc master branche to develop (#83)

* Update links in JDBC README.md file

* JDBC checkConnection  (#70)

* check JDBC connection #69

* check JDBC connection #69

* Add getDBMajorVersion only for test

* added checkConnectionTimeOut

* JDBC info.xml updated.

* JDBC info.xml file updated.

* streamsx.jdbc  1.4.0 SPLDOC upgraded

* if (checkConnectionThread != null) -> stop Thread

* db2 jdbc driver upgraded

* JDBC version number incremented

* resolves #71

* resolve #71

* #71

* corrections for #79 #78

* #43

* add jar file to .gitignor

* add toolkit.xml to gitignor

* spldoc and lib removed from repository.

* remove spldoc from samples

* add tmp to .gitignor

* credentioals is a JSON string

* README.md updated for 4.3 documentation

* credentials parameter is JSON string

* Add conversion for SPL blobs, issue #8

* Add conversion from sqlblob to splblob (on select), issue #82

* release number increased #82

* check sqlFailureAction before rollback

* Corrections for issues #86 #87 #88

* correction for #88

* correction for #88

* update JDNC info.xml file version 1.5.0

* JDBC: Update info.xml file: what is new in 1.5.0

* Update AbstractJDBCOperator.java

* jdbc properties supports jdbcurl #88

* JDBC spldoc improved

* JDBC spldoc updated.

* resolves #95 (#96)

* new parameter idleSessionTimeOut added #55

* add toolkit.xml to .gitignore

* removed toolkit.xml from samples

* The version of streamsx.jdbc increased 1.7.0

* check idleSessionTimeOut parameter #55

* check the parameter idleSessionTimeOut #55

* Support properties for keystore and truststore password (#99)

* Support properties for keystore and truststore password

* What is new in version 1.7.0 #55 #99

* Add new error messages for translation #101

* Add new error message #101

* Add new error messages for translation #101

* messages_ja_JP.properties upgraded #101

* Message for DE IT FR CN TW languages upgraded #101

* New messages for Spanish and Portuguese languages #101

* Update info.xml 1.7.2 New error messages for globalization.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants