terastream 0.1.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.ruby-version +1 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +84 -0
- data/Rakefile +1 -0
- data/bin/setup +7 -0
- data/bin/terasql +50 -0
- data/lib/terastream.rb +35 -0
- data/lib/terastream/cli.rb +83 -0
- data/lib/terastream/config.rb +12 -0
- data/lib/terastream/connection.rb +53 -0
- data/lib/terastream/errors.rb +6 -0
- data/lib/terastream/jars/readme.txt +1279 -0
- data/lib/terastream/jars/tdgssconfig.jar +0 -0
- data/lib/terastream/jars/terajdbc4.jar +0 -0
- data/lib/terastream/middleware/formatters/csv_builder.rb +21 -0
- data/lib/terastream/middleware/formatters/json_builder.rb +17 -0
- data/lib/terastream/middleware/output/kafka.rb +42 -0
- data/lib/terastream/middleware/output/kinesis.rb +41 -0
- data/lib/terastream/middleware/output/redis.rb +25 -0
- data/lib/terastream/middleware/output/s3.rb +49 -0
- data/lib/terastream/query.rb +31 -0
- data/lib/terastream/query/base_formatter.rb +13 -0
- data/lib/terastream/query/records_builder.rb +31 -0
- data/lib/terastream/query/result_set.rb +52 -0
- data/lib/terastream/query/result_set_metadata.rb +37 -0
- data/lib/terastream/query/type_map.rb +13 -0
- data/lib/terastream/version.rb +3 -0
- data/terastream.gemspec +41 -0
- metadata +175 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 44f56b88199adf5e7e2090e558bd0720d7ac4d6c
|
4
|
+
data.tar.gz: 96fce92c41b859637f2d34da4763f1185c75402c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5cb43cf9daeb793f7a1bf3826071fd4cfbefe2a9cbe565553a9387ccb7731143c3d8f3a5778bc9eac7007bb734990dabd59a29003d080704d98a9ba94d52cee7
|
7
|
+
data.tar.gz: ade13268f28c7532a648f6933570d0253adb7de72f613d9069ec014ac40d7e627019065809934d73d06fbb6795f61d7ed21e3a1a07e24740fc3c2dcaf68ea460
|
data/.gitignore
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
jruby-9.0.0.0
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 David Von Lehman & Ramin Keene
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
# Terastream
|
2
|
+
|
3
|
+
JRuby client to query data from the Teradata data warehouse. Used in your own
|
4
|
+
programs as a gem or via the terasql cli. The client takes a middleware based approach
|
5
|
+
to formatting query results and streaming data to an output location.
|
6
|
+
|
7
|
+
Bundled formatter and output middlewares support formatting results as
|
8
|
+
|
9
|
+
- Ruby objects
|
10
|
+
- JSON records
|
11
|
+
- lines of CSV
|
12
|
+
|
13
|
+
and streaming results to
|
14
|
+
|
15
|
+
- STDOUT
|
16
|
+
- Kafka
|
17
|
+
- Redis pub/sub
|
18
|
+
|
19
|
+
## Installation
|
20
|
+
|
21
|
+
- install JRuby (9.0.0.0 preferred)
|
22
|
+
- Check out the repo
|
23
|
+
- rake install
|
24
|
+
- ????
|
25
|
+
- profit
|
26
|
+
|
27
|
+
If it's been pushed to a gem server:
|
28
|
+
|
29
|
+
Add this line to your application's Gemfile:
|
30
|
+
|
31
|
+
```ruby
|
32
|
+
gem 'terastream'
|
33
|
+
```
|
34
|
+
|
35
|
+
And then execute:
|
36
|
+
|
37
|
+
$ bundle
|
38
|
+
|
39
|
+
Or install it yourself as:
|
40
|
+
|
41
|
+
$ gem install terastream
|
42
|
+
|
43
|
+
## Usage
|
44
|
+
|
45
|
+
If using Terastream in your own application:
|
46
|
+
|
47
|
+
```ruby
|
48
|
+
client = Terastream.new do |connection|
|
49
|
+
connection.username = "something"
|
50
|
+
connection.password = "password"
|
51
|
+
connection.hostname = "somehost.somwhere"
|
52
|
+
connection.formatter = Terastream::JsonBuilder
|
53
|
+
connection.output = Terastream::Output::Redis
|
54
|
+
end
|
55
|
+
|
56
|
+
results = client.query("SELECT * FROM sometable")
|
57
|
+
results.each do |result|
|
58
|
+
p result.field
|
59
|
+
end
|
60
|
+
|
61
|
+
```
|
62
|
+
|
63
|
+
Or using the terasql command line utility
|
64
|
+
|
65
|
+
```
|
66
|
+
terasql --username username --password password --host somehost.somewhere --formatter json --output redis --query "SELECT * FROM sometable"
|
67
|
+
```
|
68
|
+
|
69
|
+
## Todo
|
70
|
+
|
71
|
+
- Support for Amazon Kinesis as a results destination
|
72
|
+
- Support for DDL files being run before final query execution
|
73
|
+
|
74
|
+
## Warning
|
75
|
+
|
76
|
+
ALPHA SOFTWARE!!!!!
|
77
|
+
|
78
|
+
## Contributing
|
79
|
+
|
80
|
+
1. Fork it ( https://github.com/[my-github-username]/terastream/fork )
|
81
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
82
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
83
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
84
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/setup
ADDED
data/bin/terasql
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
#!/usr/bin/env ruby --dev
|
2
|
+
|
3
|
+
require 'terastream'
|
4
|
+
require 'optparse'
|
5
|
+
|
6
|
+
cli_options = Terastream::CLI.new
|
7
|
+
|
8
|
+
optparse = OptionParser.new do |opts|
|
9
|
+
opts.on
|
10
|
+
opts.on('-h', '--hostname hostname', 'Hostname') { |val| cli_options.hostname = val }
|
11
|
+
opts.on('-u', '--username username', 'Username') { |val| cli_options.username = val }
|
12
|
+
opts.on('-p', '--password password', 'Password') { |val| cli_options.password = val }
|
13
|
+
opts.on('-c', '--config config', 'Config') { |val| cli_options.config = val }
|
14
|
+
opts.on('-f', '--file file', 'File') { |val| cli_options.file = val }
|
15
|
+
opts.on('-o', '--output output ', 'Output') { |val| cli_options.output = val }
|
16
|
+
opts.on('-q', '--query query', 'Query') { |val| cli_options.query = val }
|
17
|
+
opts.on('-s', '--formatter formatter', 'Formatter') { |val| cli_options.formatter = val }
|
18
|
+
opts.on('-t', '--timeout timeout', 'Timeout') { |val| cli_options.timeout = val.to_i }
|
19
|
+
end
|
20
|
+
|
21
|
+
optparse.parse!
|
22
|
+
|
23
|
+
if cli_options.missing_hostname?
|
24
|
+
$stdout.write "Missing hostname, please supply a hostname with -h or --hostname\n"
|
25
|
+
return
|
26
|
+
end
|
27
|
+
|
28
|
+
if cli_options.missing_query?
|
29
|
+
$stdout.
|
30
|
+
write "Missing SQL, please supply a query with -q or --query or provide a file containing a query with -f or --file\n"
|
31
|
+
return
|
32
|
+
end
|
33
|
+
|
34
|
+
client = Terastream.new do |connection|
|
35
|
+
connection.username = cli_options.username
|
36
|
+
connection.password = cli_options.password
|
37
|
+
connection.hostname = cli_options.hostname
|
38
|
+
connection.timeout = cli_options.timeout
|
39
|
+
connection.formatter = cli_options.formatter_object
|
40
|
+
connection.output = cli_options.output_object
|
41
|
+
end
|
42
|
+
|
43
|
+
result_set = client.query(cli_options.query_string)
|
44
|
+
|
45
|
+
if results = result_set.results
|
46
|
+
results.each do |result|
|
47
|
+
$stdout.write result
|
48
|
+
$stdout.write "\n"
|
49
|
+
end
|
50
|
+
end
|
data/lib/terastream.rb
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
require 'java'
|
2
|
+
require "terastream/version"
|
3
|
+
|
4
|
+
require "terastream/cli"
|
5
|
+
require "terastream/config"
|
6
|
+
require "terastream/connection"
|
7
|
+
require "terastream/errors"
|
8
|
+
|
9
|
+
require "terastream/query"
|
10
|
+
require "terastream/query/base_formatter.rb"
|
11
|
+
require "terastream/query/records_builder.rb"
|
12
|
+
require "terastream/query/result_set"
|
13
|
+
require "terastream/query/result_set_metadata"
|
14
|
+
|
15
|
+
require "terastream/middleware/formatters/csv_builder.rb"
|
16
|
+
require "terastream/middleware/formatters/json_builder.rb"
|
17
|
+
require "terastream/middleware/output/kafka.rb"
|
18
|
+
require "terastream/middleware/output/kinesis.rb"
|
19
|
+
require "terastream/middleware/output/redis.rb"
|
20
|
+
require "terastream/middleware/output/s3.rb"
|
21
|
+
|
22
|
+
|
23
|
+
require "terastream/jars/tdgssconfig.jar"
|
24
|
+
require "terastream/jars/terajdbc4.jar"
|
25
|
+
|
26
|
+
module Terastream
|
27
|
+
class << self
|
28
|
+
def new(options = {}, &block)
|
29
|
+
connection = Connection.new(options)
|
30
|
+
|
31
|
+
yield connection if block_given?
|
32
|
+
connection
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
|
3
|
+
module Terastream
|
4
|
+
class CLI
|
5
|
+
attr_accessor :config,
|
6
|
+
:file,
|
7
|
+
:hostname,
|
8
|
+
:username,
|
9
|
+
:password,
|
10
|
+
:query,
|
11
|
+
:timeout,
|
12
|
+
:formatter,
|
13
|
+
:output,
|
14
|
+
:output_options
|
15
|
+
|
16
|
+
def initialize
|
17
|
+
@config = nil
|
18
|
+
@file = nil
|
19
|
+
@formatter = "json"
|
20
|
+
@hostname = nil
|
21
|
+
@output = nil
|
22
|
+
@password = nil
|
23
|
+
@query = nil
|
24
|
+
@timeout = 10000
|
25
|
+
@username = nil
|
26
|
+
@output_options = {}
|
27
|
+
end
|
28
|
+
|
29
|
+
def query_string
|
30
|
+
@_query_string ||= build_query_string
|
31
|
+
end
|
32
|
+
|
33
|
+
def config_options
|
34
|
+
@_config ||= read_config_file
|
35
|
+
end
|
36
|
+
|
37
|
+
def missing_query?
|
38
|
+
query_string.nil?
|
39
|
+
end
|
40
|
+
|
41
|
+
def missing_hostname?
|
42
|
+
hostname.nil?
|
43
|
+
end
|
44
|
+
|
45
|
+
def formatter_object
|
46
|
+
formatter == "csv" ? Terastream::CSVBuilder.new : Terastream::JsonBuilder.new
|
47
|
+
end
|
48
|
+
|
49
|
+
def output_object
|
50
|
+
case (output || "").to_sym
|
51
|
+
when :redis
|
52
|
+
Terastream::Output::Redis.new(config_for("redis"))
|
53
|
+
when :kinesis
|
54
|
+
when :kafka
|
55
|
+
Terastream::Output::Kakfa.new(config_for("kafka"))
|
56
|
+
else
|
57
|
+
nil
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
private
|
62
|
+
|
63
|
+
def config_for(name)
|
64
|
+
config_options.fetch(name, {})
|
65
|
+
end
|
66
|
+
|
67
|
+
def read_config_file
|
68
|
+
if File.exists?(config.to_s)
|
69
|
+
Yaml.read(config)
|
70
|
+
else
|
71
|
+
{}
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
def build_query_string
|
76
|
+
if query.nil? && file && File.exists?(file)
|
77
|
+
File.read(file)
|
78
|
+
else
|
79
|
+
query
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
module Terastream
|
2
|
+
class Config
|
3
|
+
attr_accessor :hostname, :username, :password, :timeout
|
4
|
+
|
5
|
+
def initialize(options = {})
|
6
|
+
@hostname = options[:hostname] if options[:hostname]
|
7
|
+
@username = options[:username] if options[:username]
|
8
|
+
@password = options[:password] if options[:password]
|
9
|
+
@timeout = options[:timeout] || 240
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
module Terastream
|
2
|
+
class Connection
|
3
|
+
attr_accessor :formatter, :output
|
4
|
+
|
5
|
+
attr_reader :config
|
6
|
+
|
7
|
+
def initialize(options = {})
|
8
|
+
@config = Config.new(options)
|
9
|
+
@connection = nil
|
10
|
+
@formatter = Terastream::Query::RecordsBuilder.new
|
11
|
+
@output = nil
|
12
|
+
end
|
13
|
+
|
14
|
+
def connection
|
15
|
+
@connection ||= get_connection
|
16
|
+
end
|
17
|
+
|
18
|
+
def create_statement
|
19
|
+
connection.create_statement
|
20
|
+
end
|
21
|
+
|
22
|
+
def query(query_string)
|
23
|
+
Query.build(self).execute(query_string)
|
24
|
+
end
|
25
|
+
|
26
|
+
# Config helpers
|
27
|
+
def username=(username)
|
28
|
+
config.username = username
|
29
|
+
end
|
30
|
+
|
31
|
+
def password=(password)
|
32
|
+
config.password = password
|
33
|
+
end
|
34
|
+
|
35
|
+
def hostname=(hostname)
|
36
|
+
config.hostname = hostname
|
37
|
+
end
|
38
|
+
|
39
|
+
def timeout=(timeout)
|
40
|
+
config.timeout = timeout
|
41
|
+
end
|
42
|
+
|
43
|
+
private
|
44
|
+
|
45
|
+
def get_connection
|
46
|
+
java.sql.DriverManager.get_connection(connection_string, config.username, config.password)
|
47
|
+
end
|
48
|
+
|
49
|
+
def connection_string
|
50
|
+
"jdbc:teradata://#{config.hostname}/tmode=TERA,autocommit=on,charset=UTF8,sessions=1"
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,1279 @@
|
|
1
|
+
Teradata JDBC Driver 15.10.00.09
|
2
|
+
|
3
|
+
Part of the Teradata Tools and Utilities 15.10 product suite
|
4
|
+
|
5
|
+
|
6
|
+
Get the Latest Software
|
7
|
+
-----------------------
|
8
|
+
|
9
|
+
We are always adding new features to the Teradata JDBC Driver, and
|
10
|
+
fixing issues that might affect your application.
|
11
|
+
|
12
|
+
If you obtained this release of the Teradata JDBC Driver from
|
13
|
+
physical media, please check whether a newer version is available
|
14
|
+
on the http://www.teradata.com Teradata Download Center in the
|
15
|
+
Teradata JDBC Driver section.
|
16
|
+
|
17
|
+
|
18
|
+
System Requirements
|
19
|
+
-------------------
|
20
|
+
|
21
|
+
This release of the Teradata JDBC Driver requires JDK/JRE 1.4.2, 5.0, 6.0, or 7.0.
|
22
|
+
|
23
|
+
Note that IBM WebSphere Application Server 5.0 is not supported, because
|
24
|
+
WebSphere 5.0 uses JDK 1.3.1.
|
25
|
+
|
26
|
+
This release of the Teradata JDBC Driver supports Teradata Database
|
27
|
+
13.10, 14.00, 14.10, 15.00, and 15.10.
|
28
|
+
|
29
|
+
|
30
|
+
Release Notes
|
31
|
+
-------------
|
32
|
+
|
33
|
+
This section highlights issues that you should be aware of when upgrading to this release
|
34
|
+
of the Teradata JDBC Driver. Please refer to the Teradata JDBC Driver Reference for more
|
35
|
+
information about the driver.
|
36
|
+
|
37
|
+
This release includes changes to address the following DRs, originally included
|
38
|
+
in release 15.00.00.30:
|
39
|
+
|
40
|
+
DR 178714 Escape functions {fn teradata_call_param_rs} and {fn teradata_auto_out_param}
|
41
|
+
|
42
|
+
This release includes changes to address the following DRs, originally included
|
43
|
+
in release 15.00.00.29:
|
44
|
+
|
45
|
+
DR 174886 Support Unicode Pass Through
|
46
|
+
|
47
|
+
This release includes changes to address the following DRs, originally included
|
48
|
+
in release 15.00.00.28:
|
49
|
+
|
50
|
+
DR 148961 Support backslash ( \ ) as LIKE ESCAPE character in pattern arguments of DatabaseMetaData methods
|
51
|
+
DR 161165 Use equals (=) rather than LIKE for DatabaseMetaData method pattern arguments not containing a pattern
|
52
|
+
|
53
|
+
This release includes changes to address the following DRs, originally included
|
54
|
+
in release 15.00.00.27:
|
55
|
+
|
56
|
+
DR 167410 Provide ResultSet SQLWarning when row count exceeds Integer.MAX_VALUE
|
57
|
+
DR 176246 Translate new JDBC 15.10 error messages into Japanese
|
58
|
+
|
59
|
+
This release includes changes to address the following DRs, originally included
|
60
|
+
in release 15.00.00.26:
|
61
|
+
|
62
|
+
DR 163202 Improve LOB performance
|
63
|
+
DR 174526 Improve ClientProgramName identification
|
64
|
+
|
65
|
+
This release includes changes to address the following DRs, originally included
|
66
|
+
in release 15.00.00.25:
|
67
|
+
|
68
|
+
DR 159947 Support Primary AMP Index
|
69
|
+
DR 173903 Support pass-thru tokens in SQL request text
|
70
|
+
|
71
|
+
This release includes changes to address the following DRs, originally included
|
72
|
+
in release 15.00.00.23:
|
73
|
+
|
74
|
+
DR 128828 provide Monitor partition connection support for Statement.cancel and Statement.setQueryTimeout
|
75
|
+
DR 170226 Enhance Connection.getClientInfo to return profile query band values
|
76
|
+
|
77
|
+
This release includes changes to address the following DRs, originally included
|
78
|
+
in release 15.00.00.22:
|
79
|
+
|
80
|
+
DR 163170 JDBC 4.0 API changes for DatabaseMetaData getNumericFunctions getStringFunctions getTimeDateFunctions
|
81
|
+
DR 170566 Use TD 15.10 string function RIGHT for escape syntax
|
82
|
+
DR 170631 Support the INITIATE CHECK command
|
83
|
+
|
84
|
+
This release includes changes to address the following DRs, originally included
|
85
|
+
in release 14.10.00.40:
|
86
|
+
|
87
|
+
DR 173521 Avoid sending unneeded Continue Request messages with Cancel parcel
|
88
|
+
|
89
|
+
This release includes changes to address the following DRs, originally included
|
90
|
+
in release 14.10.00.37:
|
91
|
+
|
92
|
+
DR 163490 Translate new JDBC 15.0 error messages into Japanese
|
93
|
+
DR 164061 Support the Connection.isValid method
|
94
|
+
DR 168727 Support SQL current database for JDBC FastExport SELECT statements
|
95
|
+
DR 170713 Improve DatabaseMetaData.getUDTs to return Class Name and Data Type for Array Types
|
96
|
+
|
97
|
+
This release includes changes to address the following DRs, originally included
|
98
|
+
in release 14.10.00.36:
|
99
|
+
|
100
|
+
DR 168132 avoid JDK call to System.err.println in case of XML transform error
|
101
|
+
DR 170225 Coverity found null pointer dereferences in JDBC Driver
|
102
|
+
|
103
|
+
This release includes changes to address the following DRs, originally included
|
104
|
+
in release 14.10.00.35:
|
105
|
+
|
106
|
+
DR 171241 Increase the JDBC FastLoad maximum transmitted message size to 1MB
|
107
|
+
|
108
|
+
This release includes changes to address the following DRs, originally included
|
109
|
+
in release 14.10.00.34:
|
110
|
+
|
111
|
+
DR 148040 Centralized administration for data encryption
|
112
|
+
|
113
|
+
This release includes changes to address the following DRs, originally included
|
114
|
+
in release 14.10.00.33:
|
115
|
+
|
116
|
+
DR 155892 Support for detection of replayed or out-of-order messages
|
117
|
+
|
118
|
+
This release includes changes to address the following DRs, originally included
|
119
|
+
in release 14.10.00.32:
|
120
|
+
|
121
|
+
DR 144067 Remove all references to the Cryptix source version of the AES algorithm
|
122
|
+
DR 155353 Complete AES-256 implementation started in 14.0
|
123
|
+
DR 163542 In wrap or unwrap throw GSSException if MsgProp is NULL
|
124
|
+
DR 165341 TeraGSS Java on Linux + Oracle/Sun Java blocks on /dev/random increasing logon time
|
125
|
+
DR 165369 TERAGSSJAVA: LDAP mechanism is not working
|
126
|
+
|
127
|
+
This release includes changes to address the following DRs, originally included
|
128
|
+
in release 14.10.00.27:
|
129
|
+
|
130
|
+
DR 162376 Support JSON data type
|
131
|
+
|
132
|
+
This release includes changes to address the following DRs, originally included
|
133
|
+
in release 14.10.00.26:
|
134
|
+
|
135
|
+
DR 110776 support INTERVAL data types for implicit data type conversions, and for use with the EXTRACT function
|
136
|
+
DR 144698 Support TIME WITH TIME ZONE and TIMESTAMP WITH TIME ZONE Struct bind values
|
137
|
+
DR 162127 Clarify exception for DBS request of same LOB token more than once
|
138
|
+
|
139
|
+
This release includes changes to address the following DRs, originally included
|
140
|
+
in release 14.10.00.25:
|
141
|
+
|
142
|
+
DR 168961 Improve Monitor connection PreparedStatement interoperability with JDK 7
|
143
|
+
|
144
|
+
This release includes changes to address the following DRs, originally included
|
145
|
+
in release 14.10.00.23:
|
146
|
+
|
147
|
+
DR 154833 Recoverable Network Support
|
148
|
+
DR 154881 Support Redrive protocol to automatically redrive SQL request after communication failure
|
149
|
+
DR 165410 setObject(col, new BigDecimal("1.5e-39"), Types.DECIMAL) generates StringIndexOutOfBoundsException
|
150
|
+
|
151
|
+
This release includes changes to address the following DRs, originally included
|
152
|
+
in release 14.10.00.21:
|
153
|
+
|
154
|
+
DR 165252 Improve JDBC FastLoad support for UTF8 session character set
|
155
|
+
|
156
|
+
This release includes changes to address the following DRs, originally included
|
157
|
+
in release 14.10.00.19:
|
158
|
+
|
159
|
+
DR 160024 Support PERIOD data type for JDBC FastExport
|
160
|
+
DR 160027 Support PERIOD data type for JDBC FastLoad and JDBC FastLoad CSV
|
161
|
+
DR 162940 JDBC PERIOD attributes have the same column type name as the PERIOD, which causes getAttributes (Map) to fail
|
162
|
+
|
163
|
+
This release includes changes to address the following DRs, originally included
|
164
|
+
in release 14.10.00.18:
|
165
|
+
|
166
|
+
DR 144415 STRICT_ENCODE connection parameter
|
167
|
+
|
168
|
+
This release includes changes to address the following DRs, originally included
|
169
|
+
in release 14.00.00.41:
|
170
|
+
|
171
|
+
DR 167776 CLOB INOUT parameter assigned new value in procedure body is truncated to 4 bytes when input was NULL
|
172
|
+
DR 172432 Error 1178 thrown for query returning result set of Array columns mixed with other type columns
|
173
|
+
|
174
|
+
This release includes changes to address the following DRs, originally included
|
175
|
+
in release 14.00.00.40:
|
176
|
+
|
177
|
+
DR 169289 Reconnect count not limited by RECONNECT_COUNT connection parameter after JDBC DR 159065 change
|
178
|
+
|
179
|
+
This release includes changes to address the following DRs, originally included
|
180
|
+
in release 14.00.00.39:
|
181
|
+
|
182
|
+
DR 167176 Avoid NullPointerException at logon when System property "java.vm.info" is not set
|
183
|
+
|
184
|
+
This release includes changes to address the following DRs, originally included
|
185
|
+
in release 14.00.00.38:
|
186
|
+
|
187
|
+
DR 161300 Slow JDBC logons inside TdgssContext.initSecContext 14.00
|
188
|
+
DR 165159 Change TdgssConfigApi access to accommodate TeraGSSJava DR 161300
|
189
|
+
|
190
|
+
This release includes changes to address the following DRs, originally included
|
191
|
+
in release 14.00.00.37:
|
192
|
+
|
193
|
+
DR 164718 EON support for DatabaseMetaData getMax...NameLength methods
|
194
|
+
|
195
|
+
This release includes changes to address the following DRs, originally included
|
196
|
+
in release 14.00.00.35:
|
197
|
+
|
198
|
+
DR 163466 Translate new JDBC 14.10 error messages into Japanese
|
199
|
+
DR 163807 Updatable ResultSet exception "No value has been set for parameter" with unique column
|
200
|
+
|
201
|
+
This release includes changes to address the following DRs, originally included
|
202
|
+
in release 14.00.00.33:
|
203
|
+
|
204
|
+
DR 153317 Provide ClientAttributes COPSuffixHostName and Client/Server IPAddresses/Ports
|
205
|
+
DR 162211 Implement Connection.getClientInfo to return query band values
|
206
|
+
DR 163421 Improve logging of LCC activity
|
207
|
+
DR 163501 Support PreparedStatement setAsciiStream setBinaryStream setCharacterStream with long length
|
208
|
+
|
209
|
+
This release includes changes to address the following DRs, originally included
|
210
|
+
in release 14.00.00.31:
|
211
|
+
|
212
|
+
DR 160663 Support JDBC FastLoad CSV as an application server data source
|
213
|
+
DR 160795 Support new JDBC 4.0 PreparedStatement.setAsciiStream methods for JDBC FastLoad CSV
|
214
|
+
DR 161123 Bypass JDBC FastExport for unsupported ResultSet scrollability, concurrency, or holdability
|
215
|
+
|
216
|
+
This release includes changes to address the following DRs, originally included
|
217
|
+
in release 14.00.00.30:
|
218
|
+
|
219
|
+
DR 162982 Support LDAP password containing space character
|
220
|
+
DR 163164 Correct DatabaseMetaData getNumericFunctions getStringFunctions getSystemFunctions getTimeDateFunctions
|
221
|
+
|
222
|
+
This release includes changes to address the following DRs, originally included
|
223
|
+
in release 14.00.00.29:
|
224
|
+
|
225
|
+
DR 160209 Support the SHOW IN XML command
|
226
|
+
|
227
|
+
This release includes changes to address the following DRs, originally included
|
228
|
+
in release 14.00.00.28:
|
229
|
+
|
230
|
+
DR 99266 implement ResultSet holdability CLOSE_CURSORS_AT_COMMIT
|
231
|
+
|
232
|
+
This release includes changes to address the following DRs, originally included
|
233
|
+
in release 14.00.00.27:
|
234
|
+
|
235
|
+
DR 162129 Support JDK 7
|
236
|
+
|
237
|
+
This release includes changes to address the following DRs, originally included
|
238
|
+
in release 14.00.00.26:
|
239
|
+
|
240
|
+
DR 156715 Support UTF8 session character set with Console partition
|
241
|
+
DR 159277 Provide DBS RFC 159237 DBC.IndicesV[X].IndexDatabaseName as getIndexInfo INDEX_QUALIFIER
|
242
|
+
|
243
|
+
This release includes changes to address the following DRs, originally included
|
244
|
+
in release 14.00.00.25:
|
245
|
+
|
246
|
+
DR 68722 Accommodate 64-bit Activity Count
|
247
|
+
|
248
|
+
This release includes changes to address the following DRs, originally included
|
249
|
+
in release 14.00.00.24:
|
250
|
+
|
251
|
+
DR 100184 DatabaseMetaData.getIndexInfo should support arguments containing double quotes
|
252
|
+
|
253
|
+
This release includes changes to address the following DRs, originally included
|
254
|
+
in release 14.00.00.23:
|
255
|
+
|
256
|
+
DR 160380 Support new JDBC 4.0 API methods for non-SQL connections
|
257
|
+
|
258
|
+
This release includes changes to address the following DRs, originally included
|
259
|
+
in release 14.00.00.22:
|
260
|
+
|
261
|
+
DR 127422 support sending fixed-width BYTE data values to the database
|
262
|
+
DR 160029 Provide PreparedStatement setObject method with scaleOrLength argument for Raw connections
|
263
|
+
|
264
|
+
This release includes changes to address the following DRs, originally included
|
265
|
+
in release 14.00.00.18:
|
266
|
+
|
267
|
+
DR 134645 Add support for the JDBC 4.0 SQLXML data type
|
268
|
+
|
269
|
+
This release includes changes to address the following DRs, originally included
|
270
|
+
in release 14.00.00.17:
|
271
|
+
|
272
|
+
DR 153117 JDBC FastLoad/FastExport GOVERN=OFF to use TASM fail-fast no-wait for Check Workload End
|
273
|
+
|
274
|
+
This release includes changes to address the following DRs, originally included
|
275
|
+
in release 14.00.00.16:
|
276
|
+
|
277
|
+
DR 159065 Support reconnect after database restart for MPP systems
|
278
|
+
|
279
|
+
This release includes changes to address the following DRs, originally included
|
280
|
+
in release 14.00.00.15:
|
281
|
+
|
282
|
+
DR 55968 Implement java.sql.Driver.getPropertyInfo
|
283
|
+
|
284
|
+
This release includes changes to address the following DRs, originally included
|
285
|
+
in release 14.00.00.14:
|
286
|
+
|
287
|
+
DR 157883 Increased Diffie-Hellman keysize to 2048bits used excessive CPU resulting in increased logon times
|
288
|
+
|
289
|
+
This release includes changes to address the following DRs, originally included
|
290
|
+
in release 14.00.00.13:
|
291
|
+
|
292
|
+
DR 157308 URL parameters USER/PASSWORD used when DriverManager.getConnection user/password arguments omitted or null
|
293
|
+
|
294
|
+
This release includes changes to address the following DRs, originally included
|
295
|
+
in release 14.00.00.12:
|
296
|
+
|
297
|
+
DR 156903 Support the "gtwcontrol -u yes" option for Send Connect Response with Integrity Only
|
298
|
+
|
299
|
+
This release includes changes to address the following DRs, originally included
|
300
|
+
in release 14.00.00.11:
|
301
|
+
|
302
|
+
DR 156851 Connection parameter LOGMECH=NONE enables DatabaseMetaData version retrieval without logon
|
303
|
+
|
304
|
+
This release includes changes to address the following DRs, originally included
|
305
|
+
in release 14.00.00.10:
|
306
|
+
|
307
|
+
DR 109167 Statement.execute to provide update count for MERGE statement
|
308
|
+
DR 155909 Stricter syntax check to determine whether Insert statement qualifies for JDBC FastLoad
|
309
|
+
DR 156706 Translate new JDBC 14.0 error messages into Japanese
|
310
|
+
|
311
|
+
This release includes changes to address the following DRs, originally included
|
312
|
+
in release 14.00.00.09:
|
313
|
+
|
314
|
+
DR 143362 Support the SQL NUMBER data type as the JDBC NUMERIC data type
|
315
|
+
|
316
|
+
This release includes changes to address the following DRs, originally included
|
317
|
+
in release 14.00.00.08:
|
318
|
+
|
319
|
+
DR 156036 Add connection parameter FINALIZE_AUTO_CLOSE=ON/OFF (default OFF) to control finalize method auto-closing JDBC objects
|
320
|
+
|
321
|
+
This release includes changes to address the following DRs, originally included
|
322
|
+
in release 14.00.00.05:
|
323
|
+
|
324
|
+
DR 147216 Modify TDGSS Configuration Files to support more encryption types
|
325
|
+
DR 147218 Stronger Encryption for the Teradata Security Mechanisms
|
326
|
+
DR 150335 Need a better exception message when unsupported AES keysize encountered
|
327
|
+
DR 150599 Build error in TdgssConfigFile.xsd: element LdapConfig not found in the Schema
|
328
|
+
DR 152773 Do not allow legacy logons for TD2 and LDAP when AES-128 bit logons are not allowed
|
329
|
+
|
330
|
+
This release includes changes to address the following DRs, originally included
|
331
|
+
in release 14.00.00.04:
|
332
|
+
|
333
|
+
DR 138098 support the SQL ARRAY data type and the java.sql.Array data type
|
334
|
+
|
335
|
+
This release includes changes to address the following DRs, originally included
|
336
|
+
in release 13.10.00.31:
|
337
|
+
|
338
|
+
DR 155128 Case-insensitive session character set names for CHARSET connection parameter
|
339
|
+
DR 155129 Throw SQLException from commit and get/setAutoCommit for closed connection
|
340
|
+
|
341
|
+
This release includes changes to address the following DRs, originally included
|
342
|
+
in release 13.10.00.30:
|
343
|
+
|
344
|
+
DR 154743 Incorrect SQLSTATE for some Exceptions returned from PreparedStatement.executeBatch
|
345
|
+
DR 155013 Accommodate PCLUSERNAMERESP parcel for Java Stored Procedure default connection
|
346
|
+
|
347
|
+
This release includes changes to address the following DRs, originally included
|
348
|
+
in release 13.10.00.29:
|
349
|
+
|
350
|
+
DR 148644 support Monitor partition 1MB response message
|
351
|
+
|
352
|
+
This release includes changes to address the following DRs, originally included
|
353
|
+
in release 13.10.00.28:
|
354
|
+
|
355
|
+
DR 135100 Teradata dialect for Hibernate
|
356
|
+
|
357
|
+
This release includes changes to address the following DRs, originally included
|
358
|
+
in release 13.10.00.27:
|
359
|
+
|
360
|
+
DR 153226 Updatable ResultSet Error 1244 Column index value 0 is outside the valid range
|
361
|
+
|
362
|
+
This release includes changes to address the following DRs, originally included
|
363
|
+
in release 13.10.00.26:
|
364
|
+
|
365
|
+
DR 137214 Translate new JDBC 13.10 error messages into Japanese
|
366
|
+
|
367
|
+
This release includes changes to address the following DRs, originally included
|
368
|
+
in release 13.10.00.25:
|
369
|
+
|
370
|
+
DR 96348 implement setFetchSize and setMaxRows to use FetchRowCount parcel
|
371
|
+
|
372
|
+
This release includes changes to address the following DRs, originally included
|
373
|
+
in release 13.10.00.24:
|
374
|
+
|
375
|
+
DR 107800 JDBC reconnect after database communication failure
|
376
|
+
|
377
|
+
This release includes changes to address the following DRs, originally included
|
378
|
+
in release 13.10.00.23:
|
379
|
+
|
380
|
+
DR 152249 Support result set returned from the Create/Alter Replication Group commands
|
381
|
+
|
382
|
+
This release includes changes to address the following DRs, originally included
|
383
|
+
in release 13.10.00.22:
|
384
|
+
|
385
|
+
DR 141717 Reduce synchronization on Connection and Statement objects
|
386
|
+
|
387
|
+
This release includes changes to address the following DRs, originally included
|
388
|
+
in release 13.10.00.21:
|
389
|
+
|
390
|
+
DR 129622 Support Mandatory Access Control
|
391
|
+
DR 146934 provide ClientInterfaceKind, ClientInterfaceVersion, and ClientAttributesEx
|
392
|
+
|
393
|
+
This release includes changes to address the following DRs, originally included
|
394
|
+
in release 13.10.00.19:
|
395
|
+
|
396
|
+
DR 109963 Monitor connection support for UTF8 and UTF16 session character sets
|
397
|
+
DR 149284 support TD_ANYTYPE
|
398
|
+
|
399
|
+
This release includes changes to address the following DRs, originally included
|
400
|
+
in release 13.10.00.18:
|
401
|
+
|
402
|
+
DR 148441 unify parameter marker implementation classes
|
403
|
+
DR 149859 Return empty result set from DatabaseMetaData getClientInfoProperties for older databases
|
404
|
+
|
405
|
+
This release includes changes to address the following DRs, originally included
|
406
|
+
in release 13.10.00.16:
|
407
|
+
|
408
|
+
DR 148993 Avoid error 3749 "Options Parcel information is invalid" with TD13.10 DisableSipSupport=TRUE
|
409
|
+
|
410
|
+
This release includes changes to address the following DRs, originally included
|
411
|
+
in release 13.10.00.15:
|
412
|
+
|
413
|
+
DR 145765 tdgssjava TD2 unwrap fails for integrity-only with Defective Token error
|
414
|
+
DR 146421 Multi-threaded concurrent logon attempts can throw GSSException: Error during MIC calculation
|
415
|
+
DR 148119 JDBC failing intermittently with "The LAN message Authentication is invalid"
|
416
|
+
|
417
|
+
This release includes changes to address the following DRs, originally included
|
418
|
+
in release 13.10.00.12:
|
419
|
+
|
420
|
+
DR 122378 support the ClientAttributes feature as an improvement for LogonSource
|
421
|
+
DR 138855 JDBC 4.0 API DatabaseMetaData getClientInfoProperties
|
422
|
+
DR 148350 ignore the HUTConfig returned from FastLoad BEGIN LOADING statement
|
423
|
+
|
424
|
+
This release includes changes to address the following DRs, originally included
|
425
|
+
in release 13.10.00.11:
|
426
|
+
|
427
|
+
DR 107402 JDBC 4.0 API Specification support
|
428
|
+
|
429
|
+
This release includes changes to address the following DRs, originally included
|
430
|
+
in release 13.10.00.09:
|
431
|
+
|
432
|
+
DR 147980 support multiple Record parcels for Console partition response messages
|
433
|
+
|
434
|
+
This release includes changes to address the following DRs, originally included
|
435
|
+
in release 13.10.00.08:
|
436
|
+
|
437
|
+
DR 147087 PreparedStatement executeQuery after getMoreResults throws SQLException with error code 1077
|
438
|
+
|
439
|
+
This release includes changes to address the following DRs, originally included
|
440
|
+
in release 13.10.00.07:
|
441
|
+
|
442
|
+
DR 115641 enable application custom type mapping for Distinct, Structured, and Internal UDT values
|
443
|
+
DR 147134 ResultSet getBinaryStream to return null for NULL column value
|
444
|
+
|
445
|
+
This release includes changes to address the following DRs, originally included
|
446
|
+
in release 13.10.00.06:
|
447
|
+
|
448
|
+
DR 146852 PreparedStatement.setObject(n,BigDecimal,DECIMAL,scale) scale argument specifies minimum scale
|
449
|
+
|
450
|
+
This release includes changes to address the following DRs, originally included
|
451
|
+
in release 13.10.00.05:
|
452
|
+
|
453
|
+
DR 146722 Improve DBS statement cache hit ratio for PreparedStatement VARCHAR bind values
|
454
|
+
|
455
|
+
This release includes changes to address the following DRs, originally included
|
456
|
+
in release 13.10.00.04:
|
457
|
+
|
458
|
+
DR 94091 Remove "CREATE PROCEDURE FROM EXTERNAL NAME" feature from driver
|
459
|
+
DR 136075 Avoid sending extra ET commands which cause 3510 errors in DBQLOGTBL
|
460
|
+
DR 145227 support session character set UTF8 for JDBC FastLoad CSV
|
461
|
+
|
462
|
+
This release includes changes to address the following DRs, originally included
|
463
|
+
in release 13.10.00.03:
|
464
|
+
|
465
|
+
DR 139067 DatabaseMetaData getSQLKeywords method to query SYSLIB.SQLRestrictedWords
|
466
|
+
DR 140609 Additional support for DISTINCT user-defined types
|
467
|
+
|
468
|
+
This release includes changes to address the following DRs, originally included
|
469
|
+
in release 13.00.00.33:
|
470
|
+
|
471
|
+
DR 166995 JDBC scalar function LOG returns incorrect results
|
472
|
+
DR 167160 JDBC Fastload error with ENCRYPTDATA=ON
|
473
|
+
|
474
|
+
This release includes changes to address the following DRs, originally included
|
475
|
+
in release 13.00.00.32:
|
476
|
+
|
477
|
+
DR 164292 Provide correct SQLException error codes to distinguish logon vs non-logon communication failure
|
478
|
+
|
479
|
+
This release includes changes to address the following DRs, originally included
|
480
|
+
in release 13.00.00.31:
|
481
|
+
|
482
|
+
DR 155666 Accommodate more rows from the Teradata Database than the Activity Count indicates
|
483
|
+
|
484
|
+
This release includes changes to address the following DRs, originally included
|
485
|
+
in release 13.00.00.30:
|
486
|
+
|
487
|
+
DR 163433 ResultSet.close and Statement.close may not always close response spools spanning multiple messages
|
488
|
+
DR 163530 Support JDBC 4.0 API Service Provider mechanism for automatic class loading
|
489
|
+
|
490
|
+
This release includes changes to address the following DRs, originally included
|
491
|
+
in release 13.00.00.29:
|
492
|
+
|
493
|
+
DR 155367 Intermittent socket communication failures when using setQueryTimeout with large result sets
|
494
|
+
DR 160371 Intermittent "Read timeout after abort was sent" on Linux
|
495
|
+
|
496
|
+
This release includes changes to address the following DRs, originally included
|
497
|
+
in release 13.00.00.26:
|
498
|
+
|
499
|
+
DR 143576 add connection parameter TYPE=FASTLOADCSV
|
500
|
+
DR 145146 add JDBC FastLoad CSV connection parameter FIELD_SEP
|
501
|
+
|
502
|
+
This release includes changes to address the following DRs, originally included
|
503
|
+
in release 13.00.00.25:
|
504
|
+
|
505
|
+
DR 143408 DatabaseMetaData methods use Data Dictionary V-views for TD 12.0 and later
|
506
|
+
|
507
|
+
This release includes changes to address the following DRs, originally included
|
508
|
+
in release 13.00.00.24:
|
509
|
+
|
510
|
+
DR 106710 enhance getProcedures and getProcedureColumns to report on external stored procedures also
|
511
|
+
DR 133599 DatabaseMetaData getTables support for table type GLOBAL TEMPORARY
|
512
|
+
DR 143844 The JDBC Driver throws a NullPointerException if executeBatch is called when the batch is empty
|
513
|
+
|
514
|
+
This release includes changes to address the following DRs, originally included
|
515
|
+
in release 13.00.00.23:
|
516
|
+
|
517
|
+
DR 137079 JDBC 4.0 API support ResultSet getAsciiStream and getCharacterStream for CLOB column
|
518
|
+
DR 141432 Restore missing code/methods for SIP/LOB/PREP support
|
519
|
+
|
520
|
+
This release includes changes to address the following DRs, originally included
|
521
|
+
in release 13.00.00.22:
|
522
|
+
|
523
|
+
DR 142328 Changes for DatabaseMetaData getColumns
|
524
|
+
|
525
|
+
This release includes changes to address the following DRs, originally included
|
526
|
+
in release 13.00.00.21:
|
527
|
+
|
528
|
+
DR 138607 Improve Java Tdgss initialization performance
|
529
|
+
|
530
|
+
This release includes changes to address the following DRs, originally included
|
531
|
+
in release 13.00.00.20:
|
532
|
+
|
533
|
+
DR 139320 add support for session charsets KANJISJIS_0S and KANJIEUC_0U in JDBC FastLoad
|
534
|
+
DR 139380 add support for additional session charsets in JDBC FastExport
|
535
|
+
DR 140148 add PERIOD type name to SQLWarning message when attempting JDBC FastLoad into table with PERIOD data type
|
536
|
+
DR 140534 NullPointerException from PreparedStatement setNull Types.STRUCT when using V2R6.1
|
537
|
+
|
538
|
+
This release includes changes to address the following DRs, originally included
|
539
|
+
in release 13.00.00.19:
|
540
|
+
|
541
|
+
DR 101075 Include TTU client version in Client Config parcel built by JDBC
|
542
|
+
DR 138870 Some invalid JDBC methods throw NullPointerException
|
543
|
+
|
544
|
+
This release includes changes to address the following DRs, originally included
|
545
|
+
in release 13.00.00.18:
|
546
|
+
|
547
|
+
DR 115639 input and output java.sql.Struct values for Structured and Internal UDT values
|
548
|
+
DR 117048 JDBC support for Period Data Types as java.sql.Struct
|
549
|
+
DR 139824 DatabaseMetaData getColumns should ignore Error 3523 The user does not have any access to dbname.tabname
|
550
|
+
|
551
|
+
This release includes changes to address the following DRs, originally included
|
552
|
+
in release 13.00.00.17:
|
553
|
+
|
554
|
+
DR 139774 Reduce finalizer locking for already-closed ResultSets
|
555
|
+
|
556
|
+
This release includes changes to address the following DRs, originally included
|
557
|
+
in release 13.00.00.16:
|
558
|
+
|
559
|
+
DR 124457 enable PreparedStatement batch execution to return individual success and error conditions for each parameter set
|
560
|
+
|
561
|
+
This release includes changes to address the following DRs, originally included
|
562
|
+
in release 13.00.00.15:
|
563
|
+
|
564
|
+
DR 123191 support TD 13.10 TASM workload management
|
565
|
+
|
566
|
+
This release includes changes to address the following DRs, originally included
|
567
|
+
in release 13.00.00.14:
|
568
|
+
|
569
|
+
DR 136315 Coverity found null pointer dereferences in JDBC Driver
|
570
|
+
|
571
|
+
This release includes changes to address the following DRs, originally included
|
572
|
+
in release 13.00.00.13:
|
573
|
+
|
574
|
+
DR 127101 support Extended Object Names in parcels
|
575
|
+
|
576
|
+
This release includes changes to address the following DRs, originally included
|
577
|
+
in release 13.00.00.12:
|
578
|
+
|
579
|
+
DR 134440 JDBC Error 858 is returned when single & double quotes are combined in the same query & a '?' is located in the quotes
|
580
|
+
|
581
|
+
This release includes changes to address the following DRs, originally included
|
582
|
+
in release 13.00.00.11:
|
583
|
+
|
584
|
+
DR 135882 OutOfMemoryError for getMoreResults with multi-statement request returning large result set
|
585
|
+
DR 136276 ResultSetMetaData getPrecision for DATE column (regression caused by DR 106221)
|
586
|
+
DR 136380 getDate on CHAR/VARCHAR column containing integer date values throws SQLException with error 1332
|
587
|
+
|
588
|
+
This release includes changes to address the following DRs, originally included
|
589
|
+
in release 13.00.00.09:
|
590
|
+
|
591
|
+
DR 104643 CallableStatement.getObject needs to return Time or Timestamp objects for TIME or TIMESTAMP data types
|
592
|
+
DR 106221 ResultSet and CallableStatement getDate with Calendar parameter to use Calendar's TimeZone to construct Date
|
593
|
+
DR 106222 ResultSet and CallableStatement getTime/getTimestamp with Calendar parameter to set or use Calendar's TimeZone
|
594
|
+
DR 134413 PreparedStatement/CallableStatement setDate with Calendar parameter to use Calendar's TimeZone to send DATE value
|
595
|
+
DR 134573 Enable ResultSet and CallableStatement getTimestamp to return complete TIME value fractional seconds
|
596
|
+
DR 135093 DatabaseMetaData getColumnPrivileges support for leading spaces in database object names
|
597
|
+
|
598
|
+
This release includes changes to address the following DRs, originally included
|
599
|
+
in release 13.00.00.08:
|
600
|
+
|
601
|
+
DR 122317 support FastExport direct export without spooling
|
602
|
+
DR 122340 provide TRUSTED_SQL connection parameter and {fn teradata_untrusted} escape function
|
603
|
+
DR 129206 SQL keyword changes and SQLState mappings for TD 13.10
|
604
|
+
|
605
|
+
This release includes changes to address the following DRs, originally included
|
606
|
+
in release 13.00.00.07:
|
607
|
+
|
608
|
+
DR 120610 Clean up Coverity defects found in 13g TDGSS JAVA LIBRARIES
|
609
|
+
DR 123280 GSSException from initSecContext needs to provide the exception cause for troubleshooting
|
610
|
+
DR 123711 change remaining sample programs to use CHARSET=UTF8 after DBS DR 118299 is available
|
611
|
+
DR 124683 TDGSSJAVA Kerberos fails when Data Encryption specified and server is MPRAS
|
612
|
+
DR 125601 TdgssLibraryConfigFile.xml and TdgssUserConfigFile.xml incorrectly specified DH G key in litle endian
|
613
|
+
DR 132356 TDGSS Java LDAP Mechanism does not handle Non "US-ASCII" characters in logdata
|
614
|
+
DR 132545 JDBC does not send correct charset in Unicode LDAP logons
|
615
|
+
DR 133045 If a password includes certain escape chars, the UPN created should have those chars escaped
|
616
|
+
DR 133291 Modify JDBC sample program for Transaction Isolation levels
|
617
|
+
DR 133304 Support PreparedStatement setNull with PreparedStatement setClob or setBlob in a batch insert request
|
618
|
+
DR 133717 Change log level for socket read timeout exceptions from ERROR to INFO
|
619
|
+
|
620
|
+
This release includes changes to address the following DRs, originally included
|
621
|
+
in release 13.00.00.06:
|
622
|
+
|
623
|
+
DR 132370 DatabaseMetaData getColumns support for Period and Geospatial data types
|
624
|
+
|
625
|
+
This release includes changes to address the following DRs, originally included
|
626
|
+
in release 13.00.00.05:
|
627
|
+
|
628
|
+
DR 132251 improve Thread reference usage for pooled Statement objects
|
629
|
+
|
630
|
+
This release includes changes to address the following DRs, originally included
|
631
|
+
in release 13.00.00.04:
|
632
|
+
|
633
|
+
DR 98096 In ANSI mode w/auto commit on, an unnecessary commit is sent after a prepare
|
634
|
+
DR 99487 enable use of PreparedStatement batch update when LOB_SUPPORT=off
|
635
|
+
|
636
|
+
This release includes changes to address the following DRs, originally included
|
637
|
+
in release 13.00.00.03:
|
638
|
+
|
639
|
+
DR 131214 Provide incremental fetch for Console connection result sets
|
640
|
+
|
641
|
+
This release includes changes to address the following DRs, originally included
|
642
|
+
in release 13.00.00.02:
|
643
|
+
|
644
|
+
DR 122326 provide a Raw connection type
|
645
|
+
DR 129026 use INDIC mode for JDBC FastExport
|
646
|
+
DR 130385 JDBC Driver support for STARTUP string specified by CREATE/MODIFY USER
|
647
|
+
DR 130413 Connection.getTransactionIsolation may be incorrect after SET SESSION CHARACTERISTICS command
|
648
|
+
|
649
|
+
This release includes changes to address the following DRs, originally included
|
650
|
+
in release 13.00.00.01:
|
651
|
+
|
652
|
+
DR 92605 ResultSet getter methods should throw exception for invalid RS cursor position
|
653
|
+
DR 95122 remove remaining code for obsolete feature: DR63489 connection parameter
|
654
|
+
DR 95817 remove undocumented connection pool implementation
|
655
|
+
DR 96825 remove obsolete CASE_SENSITIVE connection parameter and DataSource property
|
656
|
+
DR 97757 remove undocumented and obsolete connection parameters
|
657
|
+
DR 99263 add ConnectionPoolDataSource getters and setters defined by JDBC 3.0 spec
|
658
|
+
DR 101602 Exception thrown when a stored procedure called w/ literal IN value & ? OUT vals
|
659
|
+
DR 102420 return true from DatabaseMetaData.supportsStatementPooling
|
660
|
+
DR 102470 IndexOutOfBoundsException when a connection string parameter option is missing
|
661
|
+
DR 103542 Prep stmt batch: setObject/Types.TINYINT and setByte or setObject for same parameter throws exception w/error 857
|
662
|
+
DR 106528 ResultSet methods isBeforeFirst and isLast return incorrect values for empty result set
|
663
|
+
DR 108938 Change DatabaseMetaData.getColumns to use the current USEXVIEWS setting
|
664
|
+
DR 109268 exception with V2R6.0 and earlier when trying to CALL an SP with an OUT parameter with leading spaces in its name
|
665
|
+
DR 110190 PreparedStatement.execute throws exception for Execute Macro with '?' in macro name
|
666
|
+
DR 110895 JDBC returns IndexOutOfBoundsException when getObject(index) and other get methods are called with an invalid index
|
667
|
+
DR 113199 ArrayIndexOutOfBoundException from a reused CallableStatement.setNull with OUT parameter
|
668
|
+
DR 113547 DBS Error 3130 "Response limit exceeded" while executing Statement.executeBatch() method
|
669
|
+
DR 113577 scrollable ResultSet not returned as requested from Statement.executeQuery after Statement.executeBatch
|
670
|
+
DR 113847 SQLException w/error 3760 when attempting to call SP with a space in its name on V2R6.0 and earlier
|
671
|
+
DR 114195 {fn TIMESTAMPADD(SQL_TSI_MONTH,count,ts)} returns error when input day-of-month exceeds target month's number of days
|
672
|
+
DR 115508 NullPointerException from executeXXX methods when invalid charset specified for Java Stored Procedure default connection
|
673
|
+
DR 116004 JDBC Driver not following Java naming standards or interfaces causing rework
|
674
|
+
DR 116442 support DNS hostname aliases with Kerberos authentication
|
675
|
+
DR 120323 BatchUpdateException does not return correct update count while using SELECT statement in Statement.executeBatch
|
676
|
+
DR 121210 JDBC Driver support for NoPI tables
|
677
|
+
DR 124418 Throw SQLException chain for DBS error 7980 from CALL to SQLJ stored procedure
|
678
|
+
DR 125135 provide JDBC sample program to demonstrate use of Geospatial data
|
679
|
+
DR 126018 additional support for select-list parameter markers
|
680
|
+
DR 129058 DatabaseMetaData.getColumns support for object names with leading spaces in Data Dictionary
|
681
|
+
DR 129638 support KANJISJIS_0S, KANJIEUC_0U, LATIN1252_0A with MONITOR partition
|
682
|
+
|
683
|
+
This release includes changes to address the following DRs, originally included
|
684
|
+
in release 12.00.00.111:
|
685
|
+
|
686
|
+
DR 92048 Add COP connection parameter and DataSource property
|
687
|
+
DR 113453 CONNECT_FAILURE_TTL connection parameter
|
688
|
+
DR 126776 connectivity changes
|
689
|
+
DR 131226 provide connection parameters for TCP socket options
|
690
|
+
DR 131929 Enable TCP connection parameter to control TCP send and receive buffer sizes
|
691
|
+
|
692
|
+
This release includes changes to address the following DRs, originally included
|
693
|
+
in release 12.00.00.110:
|
694
|
+
|
695
|
+
DR 132603 Login timeout may wait too long
|
696
|
+
|
697
|
+
This release includes changes to address the following DRs, originally included
|
698
|
+
in release 12.00.00.109:
|
699
|
+
|
700
|
+
DR 132157 support PreparedStatement batch update with no parameter markers
|
701
|
+
|
702
|
+
This release includes changes to address the following DRs, originally included
|
703
|
+
in release 12.00.00.106:
|
704
|
+
|
705
|
+
DR 129949 Conditional connection is not terminated by JDBC driver if NEW_PASSWORD is invalid
|
706
|
+
|
707
|
+
This release includes changes to address the following DRs, originally included
|
708
|
+
in release 12.00.00.105:
|
709
|
+
|
710
|
+
DR 105976 getColumns & getBestRowIdentifier return incorrect values for COLUMN_SIZE for char types on Japanese-enabled DBS
|
711
|
+
DR 125463 remove unneeded trailing semicolons in SQL request text in sample programs
|
712
|
+
DR 127065 DatabaseMetaData.getIndexInfo fails to return Unique Primary Index when using UTF8 session character set
|
713
|
+
|
714
|
+
This release includes changes to address the following DRs, originally included
|
715
|
+
in release 12.00.00.104:
|
716
|
+
|
717
|
+
DR 69205 send DATE, TIME, and TIMESTAMP type codes to DBS for better implicit data type conversions
|
718
|
+
DR 97560 provide Teradata-specific escape syntax to set JDBC driver log level
|
719
|
+
DR 101194 driver should downgrade scrollable result set to forward-only if LOB_SUPPORT=off
|
720
|
+
DR 102357 PreparedStatement.addBatch exception: setTime/Timestamp & setNull TIME/TIMESTAMP
|
721
|
+
DR 107027 implement login timeout functionality - use value set by DriverManager.setLoginTimeout or DataSource.setLoginTimeout
|
722
|
+
DR 108348 support returning dynamic result sets from a Java stored procedure
|
723
|
+
DR 110511 Modify the Teradata JDBC driver to send StatementInfo parcels from the client in a request message
|
724
|
+
DR 111264 support FastExport
|
725
|
+
DR 112298 JDBC FastLoad data validation
|
726
|
+
DR 112564 Change ClearCase directory structure, and change all package statements to remove "ncr"
|
727
|
+
DR 112565 Change all copyright comments that contain 'NCR'
|
728
|
+
DR 112566 Change error message prefixes that contain '[NCR]'
|
729
|
+
DR 112569 Put the tdgssjava classes into the terajdbc4.jar file
|
730
|
+
DR 112572 Change the SQL connection Logon & Logoff to use the 'Generic' classes
|
731
|
+
DR 113344 add a reason for not invoking JDBC FastLoad to the PreparedStatement SQLWarning chain
|
732
|
+
DR 113678 provide SQLException chain and SQLWarning chain for create/replace XSP
|
733
|
+
DR 114956 support user impersonation with QueryBand
|
734
|
+
DR 114981 provide error code and SQLState at the beginning of all SQLException messages
|
735
|
+
DR 115170 avoid sending Continue/Cancel with RPO=S if Resp/BigResp was sent and EndRequest was received
|
736
|
+
DR 115627 Support Java User-Defined Functions (UDFs)
|
737
|
+
DR 115664 support Novell eDirectory for use with the LDAP mechanism
|
738
|
+
DR 115855 PreparedStatement and CallableStatement setObject should send fractional seconds of Time value to database
|
739
|
+
DR 116276 support TDGSS mechanism attribute GenerateCredentialFromLogon - move username@@password into mechdata
|
740
|
+
DR 116279 Translate new JDBC 13.0 error messages into Japanese
|
741
|
+
DR 116489 SQL keyword changes and SQLState mappings for TD 13.0
|
742
|
+
DR 116761 Support the consumption of dynamic result sets in an SQL stored procedure
|
743
|
+
DR 118803 KATAKANAEBCDIC session character set is not supported - omit from JDBC Driver User Guide
|
744
|
+
DR 120309 support data encryption and user authentication for high-level JDBC FastLoad and FastExport
|
745
|
+
DR 120378 support a literal IP address as a Teradata Database hostname
|
746
|
+
DR 120705 Test case prepareNull.java failed with the following exception message against TD 13d build (WS 03)
|
747
|
+
DR 121130 getParameterMetaData() fails with multi-statement macro and multi-statement requests
|
748
|
+
DR 121311 if DBS error occurs when inserting LOBs using PreparedStatement batch, driver violates protocol and DBS ends connection
|
749
|
+
DR 121952 avoid SQLException from Statement.close if connection is already closed
|
750
|
+
DR 122425 JDBC Driver sent Abort request message for completed request while subsequent ET request was in progress
|
751
|
+
DR 122427 NullPointerException thrown if LOB length is 0 and a read(data) is performed with data array having nonzero length
|
752
|
+
DR 123376 Modify JDBC DatabaseMetaData.getColumnPrivileges to handle new access rights added for DBS 13.0
|
753
|
+
DR 123428 WebSphere Application Server 6.1 DataSource Test Connection failed
|
754
|
+
DR 123694 Test cases PersistDataSource.java and PersistPoolDataSource.java unable to lookup datasource
|
755
|
+
DR 124800 NullPointerException when connecting to V2R5.0
|
756
|
+
|
757
|
+
This release includes changes to address the following DRs, originally included
|
758
|
+
in release 12.00.00.01:
|
759
|
+
|
760
|
+
DR 118048 IndexOutOfBoundsException from ResultSet positioning methods for large scrollable result set with V2R6.2 and earlier
|
761
|
+
DR 118571 WebSphere DataSource custom property CHARSET not working for PreparedStatement.setString non-ASCII characters
|
762
|
+
DR 119329 TeraEncrypt: Error tdgss-stack-trace-begin>>> java.lang.ArrayIndexOutOfBoundsException (shipped with tdgssjava 12.0.1.2)
|
763
|
+
|
764
|
+
This release includes changes to address the following DRs, originally included
|
765
|
+
in release 12.00.00.00:
|
766
|
+
|
767
|
+
DR 51544 Updateable result sets.
|
768
|
+
DR 58075 Blob and Clob update methods added by the JDBC 3.0 specification.
|
769
|
+
DR 92927 handle database password expiration.
|
770
|
+
DR 92937 add connection parameter to choose X views or non-X views for metadata.
|
771
|
+
DR 94241 provide getMoreResults (KEEP_CURRENT_RESULT) for multistmt req cursor positioning.
|
772
|
+
DR 99338 certify WebLogic 9.1 on Windows.
|
773
|
+
DR 99339 certify WebLogic 9.1 on Solaris/SPARC.
|
774
|
+
DR 99341 certify WebLogic 9.1 on Linux.
|
775
|
+
DR 99343 certify ColdFusion MX 7 on Windows.
|
776
|
+
DR 101800 support "jdbc:default:connection" URL for use in a Java Stored Procedure.
|
777
|
+
DR 102453 JDBC support for Stored Procedure Dynamic Result Sets.
|
778
|
+
DR 102730 support full ANSI MERGE statement.
|
779
|
+
DR 102732 support the SET QUERY_BAND statement.
|
780
|
+
DR 102852 add TD 12.0 reserved words to DatabaseMetaData.getSQLKeywords.
|
781
|
+
DR 103778 certify with JBoss 3.2.3 on Windows.
|
782
|
+
DR 103780 certify with WebSphere 6.1 on Windows.
|
783
|
+
DR 103781 certify with WebSphere 6.1 on AIX.
|
784
|
+
DR 103782 certify with WebSphere 6.1 on Solaris/SPARC.
|
785
|
+
DR 104096 update application server documentation for TTU 12.0 release.
|
786
|
+
DR 104748 certify Windows XP Professional x64 on EM64T with JDK 5.0 32-bit.
|
787
|
+
DR 104749 certify Windows XP Professional x64 on EM64T with JDK 5.0 64-bit.
|
788
|
+
DR 104750 certify 32-bit Windows Server 2003 on EM64T with JDK 5.0 32-bit.
|
789
|
+
DR 107100 ResultSet and CallableStatement getString for BYTE/VARBYTE value to use session charset instead of JVM default charset.
|
790
|
+
DR 107197 JDBC-related corrections to the Introduction to Teradata Warehouse.
|
791
|
+
DR 108118 UNIX-Kerberos target name is case-sensitive, so Teradata JDBC Driver must change Teradata@m/c to TERADATA@m/c.
|
792
|
+
DR 108385 Change Teradata JDBC Driver version to 12.0.0.1.
|
793
|
+
DR 108390 accommodate DBS version change from V2R7.0 to 12.0.
|
794
|
+
DR 109658 support CHARSET= connection parameter for jdbc:default:connection for Java Stored Procedures.
|
795
|
+
DR 109689 Corrections for UNIX classpath listed in Chapter 2 section "Running a Sample Application".
|
796
|
+
DR 109728 Certify TTU 12.0 JDBC Driver with JBoss 4.0 and JDK 5.0.
|
797
|
+
DR 110204 Statement.getMoreResults (KEEP_CURRENT_RESULT) to support only TYPE_SCROLL_INSENSITIVE.
|
798
|
+
DR 110539 Statement.execute fails for a CALL to a stored procedure.
|
799
|
+
DR 112657 SQLState mappings for External Stored Procedure error codes.
|
800
|
+
DR 112978 accommodate 12m DBS DR 110445 change to DBC.Columns.ColumnName value 'RETURN' is now 'RETURN0'.
|
801
|
+
|
802
|
+
This release includes changes to address the following DRs, originally included
|
803
|
+
in release 03.04.00.06:
|
804
|
+
|
805
|
+
DR 131684 add JDBC FastLoad support for EJB transactions with multiple PreparedStatements
|
806
|
+
|
807
|
+
This release includes changes to address the following DRs, originally included
|
808
|
+
in release 03.04.00.05:
|
809
|
+
|
810
|
+
DR 131418 support DBS_PORT connection parameter with TYPE=FASTLOAD and FASTEXPORT
|
811
|
+
|
812
|
+
This release includes changes to address the following DRs, originally included
|
813
|
+
in release 03.04.00.03:
|
814
|
+
|
815
|
+
DR 96980 GtwConfigParcel could fail when new gateway features added
|
816
|
+
DR 97103 improve correlation of TDSession objects with log messages
|
817
|
+
DR 98176 avoid sending cancel request if RESP/BIGRESP is used and ENDREQUEST received
|
818
|
+
DR 100090 modify driver to avoid DBS crash when using LOB_SUPPORT=off and large result set
|
819
|
+
DR 106708 add LOG=TIMING measurements
|
820
|
+
DR 114154 CallableStatement batch support to execute CALL sequentially to work within DBS restriction of single CALL at a time
|
821
|
+
DR 114470 TTU 8.1 Teradata JDBC Driver 3.3 to support TD 12.0 (backport DR 108390)
|
822
|
+
DR 115269 improve JDBC FastLoad exception handling of PreparedStatement.executeBatch and Connection.rollback
|
823
|
+
DR 115914 Customer gets errors on jdbc connection attempts originating from TdgssConfigApi (shipped with tdgssjava 6.2.2.19)
|
824
|
+
DR 118851 Java TDGSS_6.1.1.93_GCA fails against a 12.00.00.04 DBS for Kerberos (shipped with tdgssjava 6.2.2.22)
|
825
|
+
DR 119000 ResultSetMetaData.isAutoIncrement should return true for identity column
|
826
|
+
DR 119320 Add ActivityType 123 for REPLACE UDF
|
827
|
+
DR 120597 force connection failure for invalid response message header
|
828
|
+
DR 120929 DatabaseMetaData.getColumns returns incorrect information when using UTF8 session character set
|
829
|
+
|
830
|
+
This release includes changes to address the following DRs, originally included
|
831
|
+
in release 03.04.00.02:
|
832
|
+
|
833
|
+
DR 107900 support ambiguous data type for ResultSet columns with SIP-enabled prepare of select-list parameter markers
|
834
|
+
DR 110436 provide consistency for ACCOUNT connection parameter
|
835
|
+
DR 112806 PreparedStatement: treat Types.FLOAT & Types.REAL as Types.DOUBLE in setObject and preserve float precision in setFloat
|
836
|
+
DR 113069 executeQuery may return error 1182 if URL param CLIENT_CHARSET is set and the DBS is running V2R6.1 or earlier
|
837
|
+
|
838
|
+
This release includes changes to address the following DRs, originally included
|
839
|
+
in release 03.04.00.01:
|
840
|
+
|
841
|
+
DR 100351 support the MONITOR partition
|
842
|
+
DR 100352 support the DBCCONS partition
|
843
|
+
DR 103835 return actual update count for MERGE insert, MERGE update, and MERGE mixed SQL statements
|
844
|
+
DR 104893 provide high-level JDBC FastLoad connection for automatic management of multiple low-level connections
|
845
|
+
DR 106917 CallableStatement.getObject fails for INOUT Clob parameter when input value was sent to 6.2 DBS as VARCHAR
|
846
|
+
DR 108500 ResultSetMetaData.getSchemaName to return database name with Teradata Database 6.2
|
847
|
+
DR 108926 enable JDBC Load and Export sessions to be identifiable by TASM
|
848
|
+
DR 109424 Make Elicit File protocol work with the JDBC driver and 64 bit Windows DBS
|
849
|
+
DR 109760 Change sample program T21400JD to demonstrate call to corrected UDF Judf01
|
850
|
+
DR 110059 Return correct values for getColumnDisplaySize for temporal data types
|
851
|
+
DR 110112 provide pre-V2R6.2 high-level JDBC FastLoad connection for automatic management of multiple low-level connections
|
852
|
+
DR 111254 JDBC FastLoad support for BIGINT and large DECIMAL, JDBC FastLoad support for EJB transactions
|
853
|
+
|
854
|
+
This release includes changes to address the following DRs, originally included
|
855
|
+
in release 03.04.00.00:
|
856
|
+
|
857
|
+
DR 58028 JDBC 3.0 ParameterMetaData methods.
|
858
|
+
DR 94704 RFC: Support the retrieval of auto-generated keys from an insert statement.
|
859
|
+
DR 95968 Add support for BIGINT and DECIMAL(38).
|
860
|
+
DR 96457 certify JDBC driver with Teradata Database on Windows x64.
|
861
|
+
DR 96467 update application server documentation for TTU 8.2 / JDBC 3.4 release.
|
862
|
+
DR 97514 ResultSetMetaData methods to use actual database values rather than COMPAT_xxx.
|
863
|
+
DR 97554 provide User Defined Type (UDT) information from DatabaseMetaData methods.
|
864
|
+
DR 99270 certify Solaris 10 64-bit on AMD64 with JDK 5.0 32-bit & 64-bit.
|
865
|
+
DR 99337 certify Red Hat AS 4.0 64-bit on AMD64 with JDK 5.0 32-bit & 64-bit.
|
866
|
+
DR 104782 setMaxFieldSize(small value) causes subsequent exceptions from getDate for ANSI date, getTime, and getTimestamp
|
867
|
+
|
868
|
+
This release includes changes to address the following DRs, originally included
|
869
|
+
in release 03.03.00.04:
|
870
|
+
|
871
|
+
DR 87473 getColumnDisplaySize returns number of bytes for Character columns
|
872
|
+
DR 104043 DatabaseMetaData.getTableTypes should return ResultSet ordered by TABLE_TYPE
|
873
|
+
DR 108939 User Guide must say setAsciiStream/setCharacterStream are not supported for binding data to BYTE or VARBYTE destinations
|
874
|
+
DR 109213 Encryption problem message may not display an argument
|
875
|
+
DR 109231 TYPE_SCROLL_INSENSITIVE used with execute method causes subsequent getMoreResults to hang or throw exception
|
876
|
+
DR 109294 Statement.executeBatch must clear the batch
|
877
|
+
DR 109615 DatabaseMetaData.getColumns throws exception
|
878
|
+
|
879
|
+
This release includes changes to address the following DRs, originally included
|
880
|
+
in release 03.03.00.03:
|
881
|
+
|
882
|
+
DR 101277 enable UDFs, XSPs, and UDMs to be created from resources on client using JDBC
|
883
|
+
DR 106841 improve SQLException from executeXXX when InputStream bound with setXxxStream is closed before executeXXX
|
884
|
+
DR 107345 TTU 8.1: Getting NullPointerException from tdgssjava (shipped with tdgssjava 6.2.0.4)
|
885
|
+
DR 107536 CallableStatement executeUpdate: error 6906 (iterated request disallowed) occurs after error 1184 (invalid parameter)
|
886
|
+
DR 107987 workaround for Java 2 security Sun Bug ID 6205384 - SocketPermission ignored for unknown host
|
887
|
+
DR 108260 restrict printed characters to 7-bit ASCII in debug log message dumps
|
888
|
+
|
889
|
+
This release includes changes to address the following DRs, originally included
|
890
|
+
in release 03.03.00.02:
|
891
|
+
|
892
|
+
DR 101381 scalar functions (TIMESTAMPADD, TIMESTAMPDIFF) need SQL_TSI_HOUR
|
893
|
+
DR 103411 Add support for inserting NULL, Unicode characters, and remaining data types to be supported by JDBC FastLoad
|
894
|
+
DR 103740 with CHARSET=UTF16, PreparedStatement.executeBatch should accept TIMESTAMP values w/varying number of fractional digits
|
895
|
+
DR 103772 send millisecond portion of java.sql.Time values to DBS with omitted TNANO connection parameter, & with TNANO=1 or more
|
896
|
+
DR 104020 getTime & getObject methods: return TIME values w/fractional seconds as java.sql.Time values w/milliseconds precision
|
897
|
+
DR 104370 throw SQLException when DBS says 'n' characters are coming but really only sends a fraction of 'n'
|
898
|
+
DR 104825 insert trailing zeros before TIME ZONE for TIME or TIMESTAMP values with varied precisions and no TNANO or TSNANO
|
899
|
+
DR 105073 Modify setBinary/Ascii/CharacterStream methods to determine when to send Deferred LOB/VARCHAR/VARBYTE values
|
900
|
+
DR 105265 Ensure driver is registered only once with DriverManager
|
901
|
+
DR 105633 non-prepared Statement.executeBatch is limited to fewer statements with V2R6.x than with V2R5.x
|
902
|
+
DR 105834 PreparedStatement.setAsciiStream drops trailing spaces
|
903
|
+
DR 106091 stream/reader from Clob.getAsciiStream/getCharacterStream should remain valid for Connection lifetime
|
904
|
+
DR 106115 Clob.getSubString truncates data when a multi-byte character set is used
|
905
|
+
DR 106116 cannot execute more than once a CallableStatement with OUT parameters on V2R6.0 and earlier
|
906
|
+
DR 106118 Incorrect data is returned if the ResultSet is closed while reading a Blob
|
907
|
+
DR 106136 A finalize statement needs to be implemented for LobStatement
|
908
|
+
DR 106243 ResultSet.getAsciiStream returns invalid data on mainframe z/OS USS
|
909
|
+
|
910
|
+
This release includes changes to address the following DRs, originally included
|
911
|
+
in release 03.03.00.01:
|
912
|
+
|
913
|
+
DR 58030 RFC: JDBC3.0: DatabaseMetaData methods (New in JDBC 3.0)
|
914
|
+
DR 58032 RFC: JDBC3.0: DatabaseMetaData methods (MODIFIED from JDBC2.0)
|
915
|
+
DR 96462 certify Teradata JDBC Driver with SAP Web Application Server 6.40
|
916
|
+
DR 97255 document Teradata JDBC Driver configuration with SAP Universal Data Connector
|
917
|
+
DR 98047 DatabaseMetaData.getProcedures returns ResultSet that differs from API javadoc
|
918
|
+
DR 98048 DatabaseMetaData.getProcedureColumns returns ResultSet differs from API javadoc
|
919
|
+
DR 98050 DatabaseMetaData.getColumns fails when a database name contains a quote
|
920
|
+
DR 98051 PreparedStatement.setCharacterStream and setAsciiStream drop trailing spaces
|
921
|
+
DR 98053 DatabaseMetaData.getColumns returns RS w/RSMD.getColumnTypeName null for all columns
|
922
|
+
DR 98055 DatabaseMetaData.getPrimaryKeys returns ResultSet that differs from API javadoc
|
923
|
+
DR 98855 setBigDecimal throw DataTruncation for >18 integral digits; & round frac. digits
|
924
|
+
DR 99578 implement JDBC 1.0 DatabaseMetaData methods
|
925
|
+
DR 99720 low-level FastLoad connection with PreparedStatement batch update
|
926
|
+
DR 99760 AppServer-HowTo HTML doc needs modification for JRun datasource definition
|
927
|
+
DR 100404 use 24-hour values rather than 12-hour for JDBC driver log message timestamps
|
928
|
+
DR 100902 automatic close of garbage-collected Statement and ResultSet objects
|
929
|
+
DR 101115 PreparedStatement.setLong to throw DataTruncation when long value has 19 digits
|
930
|
+
DR 101767 ResultSet.absolute fails for negative row numbers
|
931
|
+
DR 102405 thread deadlock for concurrent calls to Statement.executeQuery & ResultSet.close
|
932
|
+
DR 103173 securerandom.source and/or java.security.egd dont work in 1.5.0_05 (tdgssjava 6.1.0.18)
|
933
|
+
|
934
|
+
This release includes changes to address the following DRs, originally included
|
935
|
+
in release 03.03.00.00:
|
936
|
+
|
937
|
+
DR 50036 RFC: JDBC1.0: Escape syntax support
|
938
|
+
DR 83850 RFC: JDBC2.0: PreparedStatement.getMetaData()
|
939
|
+
DR 89445 ResultSetMetaData.getColumnClassName should return class name, not null
|
940
|
+
DR 89449 Need to add COMPAT_xxx URL parameters for three ResultSetMetaData methods
|
941
|
+
DR 91121 disallow specification of a username and password when LDAP or Kerberos is used
|
942
|
+
DR 91636 Implement Denial of services feature as documented in TRP 541-0004949
|
943
|
+
DR 91796 update application server documentation for TTU 8.1 / JDBC 3.3 release
|
944
|
+
DR 92136 Enable transaction isolation level TRANSACTION_READ_UNCOMMITTED
|
945
|
+
DR 92143 DatabaseMetaData: obtain DBS limits from Config Response parcel
|
946
|
+
DR 92146 obtain DBS version/release from new feature item in Config Response parcel
|
947
|
+
DR 92212 testing: support V2R6.1 feature: external security clause for sprocs/UDFs
|
948
|
+
DR 92216 J2SE 5.0 (JDK 1.5) certification
|
949
|
+
DR 92219 Solaris 10/SPARC 32-bit and 64-bit certification
|
950
|
+
DR 92221 AIX 5.3 32-bit and 64-bit certification
|
951
|
+
DR 92222 SuSE Linux 32-bit certification
|
952
|
+
DR 92223 WebSphere 6.0 Certification
|
953
|
+
DR 92228 WebLogic 8.1 with both Sun JVM and JRockit JVM Certification
|
954
|
+
DR 92230 ColdFusion MX 6.1 Certification
|
955
|
+
DR 92231 JBoss 4.0 Certification
|
956
|
+
DR 92449 Implement UTF16 support for tdgss as documented in TRP 541-0005061
|
957
|
+
DR 92450 eliminate HELP PROCEDURE before calls to sprocs with OUT params
|
958
|
+
DR 92648 translate new JDBC 3.3 error messages into Japanese
|
959
|
+
DR 92693 TTU 8.1 / JDBC 3.3 User Guide: no support for V2R6.1 User Defined Types (UDTs)
|
960
|
+
DR 92736 Include info for the sample files in samples.jar for MVS in the JDBC Users Guide
|
961
|
+
DR 92919 DatabaseMetaData APIs should support patterns containing single quotes
|
962
|
+
DR 93293 Single quote in comment throws invalid error via JDBC
|
963
|
+
DR 93890 getHoldability APIs should return HOLD_CURSORS_OVER_COMMIT, not throw exception
|
964
|
+
DR 94311 testing: support V2R6.1 feature: activity count overflow warning
|
965
|
+
DR 94816 JDBC User Guide section "Improving Performance": list use of PreparedStatement
|
966
|
+
DR 95061 TTU 8.1 JDBC User Guide addition: CALL statements not using Escape Syntax
|
967
|
+
DR 95334 corrections for JDBC User Guide Appendix D - Data Type Conversions
|
968
|
+
DR 95741 JDBC User Guide changes to Chapter 1 section "Support for Internationalization"
|
969
|
+
DR 95961 database error in TERA mode with autocommit off incorrectly turns autocommit on
|
970
|
+
DR 95969 incomplete update count array in TERA mode w/autocommit off for failed batch req
|
971
|
+
DR 96149 Provide warning message from SuccessParcel to Statement.getWarnings method
|
972
|
+
DR 96253 Package TdgssUserConfigFile.xml in a jar file
|
973
|
+
DR 96653 Revamp JDBC Connection Pool Orange Book as HTML docs in appserver-howto.jar
|
974
|
+
DR 96824 JDBC User Guide change: discontinued CASE_SENSITIVE connection parameter
|
975
|
+
DR 96914 TTU 8.1 JDBC User Guide addition: new section: "Planned Future Changes"
|
976
|
+
DR 97038 TTU 8.1 JDBC User Guide addition: new section: LogonSource Format
|
977
|
+
DR 97290 Large batch requests using LOB params, may fail to process all requests in batch
|
978
|
+
DR 97428 HPUX 11.23/Itanium-2 32-bit and 64-bit certification
|
979
|
+
DR 97550 corrections for COMPAT_GETSCHEMA and COMPAT_GETTABLE information in JDBC UG
|
980
|
+
DR 97585 TTU 8.1 JDBC User Guide: new contents for section: Response Limit Exceeded Error
|
981
|
+
DR 97723 fix sample programs T21301JD, T21302JD to use ConnectionPoolDataSource correctly
|
982
|
+
DR 97747 TTU8.1 JDBC Users Guide: need to add an explanation for DBS error 3926
|
983
|
+
DR 97816 DatabaseMetaData.getMaxStatements should return 16, not 1048500
|
984
|
+
DR 98089 TTU 8.1 JDBC User Guide changes: miscellaneous "Supported Methods" changes
|
985
|
+
DR 98110 TTU 8.1 JDBC UG: refer readers to appserver documentation in download package
|
986
|
+
|
987
|
+
This release includes changes to address the following DRs, originally included
|
988
|
+
in release 03.02.00.03:
|
989
|
+
|
990
|
+
DR 56133 Implement JDBC1.0 APIs DatabaseMetaData.getExportedKeys and getImportedKeys
|
991
|
+
DR 90532 PreparedStatement.setBigDecimal throws java.lang.ArithmeticException exception
|
992
|
+
DR 92609 Wrong value in the database when PreparedStatement.setBigDecimal is being used
|
993
|
+
DR 97022 PreparedStatement.executeBatch throws ClassCastException: java.util.ArrayList
|
994
|
+
|
995
|
+
This release includes changes to address the following DRs, originally included
|
996
|
+
in release 03.02.00.02:
|
997
|
+
|
998
|
+
DR 84637 RFC: Statement.execute() should not retrieve all the data before returning
|
999
|
+
DR 87267 JDBC error: ('0A'X) is not a valid Teradata SQL token
|
1000
|
+
DR 89201 UT: NullPointerException for unbound prep stmt parameter (should be SQLException)
|
1001
|
+
DR 90136 JDBC throws parameter error when ? occurs in 2nd quoted string
|
1002
|
+
DR 91353 setNull does not work correctly when the sql type is a Boolean
|
1003
|
+
DR 91951 CLIENT_CHARSET connection parameter
|
1004
|
+
DR 92125 add LOG=TIMING connection parameter
|
1005
|
+
DR 92294 JDBCException when creating UDF: Function 'Judf01' already exists
|
1006
|
+
DR 92697 getTables() to get the table type, the resultset contains "T" instead of Table
|
1007
|
+
DR 92918 map replication error code 6699 to SQLState 40001 (transaction rolled back)
|
1008
|
+
DR 93054 Logon fails with 8019 from jdbc when ldap mechanism is used
|
1009
|
+
DR 93156 Inserting null decimal datatypes not working when URL LOB_SUPPORT=OFF
|
1010
|
+
DR 93157 Using PreparedStatement.setObject(int, Object) to set null value throws NPE
|
1011
|
+
DR 93549 Type 4 driver Get-column-by-name from 2nd RS throws "column not found" exception
|
1012
|
+
DR 94407 do not include class files in samples.jar
|
1013
|
+
DR 94605 Statement.addBatch fails when SQL contains trailing space
|
1014
|
+
DR 94923 row fetching too slow with >1000 rows in result set using 1MB response messages
|
1015
|
+
DR 94970 PreparedStatement.getResultSet should return null for non-RS-returning statement
|
1016
|
+
DR 95078 interoperability issue when Connection.close called while query is in progress
|
1017
|
+
DR 95302 provide SQLState for V2R6.0.x retryable error codes 3231 and 3319
|
1018
|
+
DR 95828 CLIENT_CHARSET DataSource property
|
1019
|
+
DR 95943 DatabaseMetaData.getSQLKeywords for V2R5.0, V2R5.1, and V2R6.0
|
1020
|
+
|
1021
|
+
This release includes changes to address the following DRs, originally included
|
1022
|
+
in release 03.02.00.01:
|
1023
|
+
|
1024
|
+
DR 85852 TeraLocalPrepared/CallableStatement.getResultSetType and other incorrect methods
|
1025
|
+
|
1026
|
+
This release includes changes to address the following DRs, originally included
|
1027
|
+
in release 03.02.00.00:
|
1028
|
+
|
1029
|
+
DR 57921 RFC: JDBC Certification on Windows 2003 Server (32-bit/64-bit)
|
1030
|
+
DR 63499 RFC: Make changes to files for JDBC to use JDK 1.4
|
1031
|
+
DR 68162 RFC: JDBC2.0: PreparedStatement batch updates
|
1032
|
+
DR 68625 RFC: Add more sample files to JDBC package
|
1033
|
+
DR 68837 RFC: V2R6: 1 MB/APH Responses
|
1034
|
+
DR 68844 RFC: V2R6: Security Improvements and Extensions
|
1035
|
+
DR 69061 RFC: JDBC2.0: Scrollable ResultSets (bi-directional cursor positioning)
|
1036
|
+
DR 84400 RFC: Certify Sun Microsystems RowSet implementation with JDBC driver
|
1037
|
+
DR 84635 RFC: remove jdbc4.properties file - use connection attributes
|
1038
|
+
DR 84672 RFC: Remove platform packaging for JDBC Type 4 driver
|
1039
|
+
DR 84853 RFC: Test JDBC Driver with WebSphere 5.1
|
1040
|
+
DR 84854 RFC: Test JDBC driver with WebLogic 8.1
|
1041
|
+
DR 85123 RFC: JDBC Certification on 64-bit Linux
|
1042
|
+
DR 85393 RFC: Remove Type 3 driver from product
|
1043
|
+
DR 85397 RFC: Update values for DatabaseMetaData functions for V2R6
|
1044
|
+
DR 85434 createStatement: Downgrade RS type and concurrency, and generate SQLWarning
|
1045
|
+
DR 85536 RFC: Enable Type 4 driver to be built on Solaris
|
1046
|
+
DR 85980 RFC: remove sample applets
|
1047
|
+
DR 85981 DatabaseMetaData.getIndexInfo() is not implemented correctly
|
1048
|
+
DR 86049 JDBC was not handling nulls in where clauses correctly in releases 3.1 & earlier
|
1049
|
+
DR 86456 RFC: support LOBs as stored procedure output parameters
|
1050
|
+
DR 86471 TRANSACTION_READ_UNCOMMITTED(1) is not supported
|
1051
|
+
DR 87018 ResultSet.getConcurrency should return CONCUR_READ_ONLY
|
1052
|
+
DR 87512 various ResultSetMetaData methods throw exceptions
|
1053
|
+
DR 88400 RCI: Null Pointer dereference in ParcelFactory.java
|
1054
|
+
DR 88403 RCI: Null Pointer Dereference in Statement.java
|
1055
|
+
DR 88405 RCI: Resource leak of FileInputStream
|
1056
|
+
DR 88409 RCI: Resource Leak ResultSets not being closed
|
1057
|
+
DR 88581 Null Pointer exception in TDGSS interface code
|
1058
|
+
DR 88763 Deprecate TeraStatement.getSpl and setSpl methods for TTU 8.0
|
1059
|
+
DR 89173 STV: Statement.getXXX and PrepStmt.setXXX conversions must match User Guide
|
1060
|
+
|
1061
|
+
|
1062
|
+
Troubleshooting Topics
|
1063
|
+
----------------------
|
1064
|
+
|
1065
|
+
|
1066
|
+
TERAJDBC4 ERROR ... The com.ncr.teradata.TeraDriver class name is deprecated
|
1067
|
+
----------------------------------------------------------------------------
|
1068
|
+
New Teradata JDBC Driver class names are available.
|
1069
|
+
|
1070
|
+
- For JDBC URL connections: com.teradata.jdbc.TeraDriver
|
1071
|
+
- For WebSphere Data Sources: com.teradata.jdbc.TeraConnectionPoolDataSource
|
1072
|
+
|
1073
|
+
The old class names will continue to work; however, a warning message
|
1074
|
+
will be printed as a reminder to switch over to the new class names.
|
1075
|
+
|
1076
|
+
TERAJDBC4 ERROR ... The com.ncr.teradata.TeraDriver class name is deprecated.
|
1077
|
+
Please use the com.teradata.jdbc.TeraDriver class name instead.
|
1078
|
+
|
1079
|
+
TERAJDBC4 ERROR ... The com.ncr.teradata.TeraConnectionPoolDataSource class name is deprecated.
|
1080
|
+
Please use the com.teradata.jdbc.TeraConnectionPoolDataSource class name instead.
|
1081
|
+
|
1082
|
+
|
1083
|
+
Solution:
|
1084
|
+
|
1085
|
+
Please change your applications and data source definitions at your
|
1086
|
+
earliest convenience, because the old class names will only be supported
|
1087
|
+
for a limited number of future releases.
|
1088
|
+
|
1089
|
+
|
1090
|
+
Error 2665, 2673, or 3944 when using PreparedStatement setDate
|
1091
|
+
--------------------------------------------------------------
|
1092
|
+
After upgrading to this release of the Teradata JDBC Driver, you may
|
1093
|
+
encounter one of the following Teradata Database errors when using the
|
1094
|
+
PreparedStatement setDate method with Teradata Database releases between
|
1095
|
+
TD 12.00.00.00 and TD 12.00.01.01:
|
1096
|
+
|
1097
|
+
Teradata Database Error 2665 Invalid Date.
|
1098
|
+
Teradata Database Error 2673 The source parcel length does not match data that was defined.
|
1099
|
+
Teradata Database Error 3944 Data length is invalid for the data type.
|
1100
|
+
|
1101
|
+
|
1102
|
+
Solution:
|
1103
|
+
|
1104
|
+
If using Teradata Database releases between TD 12.00.00.00 and TD 12.00.01.01,
|
1105
|
+
then upgrade to Teradata Database 12.00.01.02 or later, in order to obtain
|
1106
|
+
the fix for DBS DR 119554.
|
1107
|
+
|
1108
|
+
|
1109
|
+
Incorrect values from getColumnDisplaySize for CLOB columns
|
1110
|
+
-----------------------------------------------------------
|
1111
|
+
When using Teradata Database releases V2R06.00.02.00 through V2R06.00.02.07
|
1112
|
+
or Teradata Database releases V2R06.01.00.00 through V2R06.01.00.08, you may
|
1113
|
+
encounter the problem described by DBS DR 100397 ("PrepInfoX returns
|
1114
|
+
incorrect Length for CLOB columns"), which may cause incorrect values to be
|
1115
|
+
returned for CLOB columns from ResultSetMetaData.getColumnDisplaySize.
|
1116
|
+
|
1117
|
+
|
1118
|
+
Solution:
|
1119
|
+
|
1120
|
+
If using Teradata Database releases V2R06.00.02.00 through V2R06.00.02.07,
|
1121
|
+
then upgrade to release V2R06.00.02.08 or later, which contains the fix
|
1122
|
+
for DR 100397.
|
1123
|
+
|
1124
|
+
If using Teradata Database releases V2R06.01.00.00 through V2R06.01.00.08,
|
1125
|
+
then upgrade to release V2R06.01.00.09 or later, which contains the fix
|
1126
|
+
for DR 100397.
|
1127
|
+
|
1128
|
+
|
1129
|
+
Unable to connect to database when using HPUX 11.23 JDK 5.0
|
1130
|
+
-----------------------------------------------------------
|
1131
|
+
|
1132
|
+
When attempting to connect to the Teradata Database when HPUX 11.23 JDK 5.0,
|
1133
|
+
you may receive an exception similar to: TeraEncrypt: Error
|
1134
|
+
tdgss-stack-trace-begin>>> GSSException: Failure unspecified at GSS-API
|
1135
|
+
level (Mechanism level: Failure during key generation by algorithm layer.)
|
1136
|
+
|
1137
|
+
This is a known problem with HPUX 11.23 JDK 5.0. HP's web site states
|
1138
|
+
the following:
|
1139
|
+
|
1140
|
+
SecureRandom engine implementation (11i HP Integrity and HP9000 PA-RISC)
|
1141
|
+
|
1142
|
+
Beginning with 5.0, Sun Microsystems' SecureRandom engine implementation
|
1143
|
+
supports a new algorithm, NativePRNG, in addition to SHA1PRNG. NativePRNG
|
1144
|
+
will only be available if /dev/random and /dev/urandom are installed in
|
1145
|
+
your system. Because HP-UX does not support seeding entropy generating
|
1146
|
+
devices such as /dev/random, applications that rely on this will not be
|
1147
|
+
able to use NativePRNG. An attempt to seed the device will cause an
|
1148
|
+
exception. This defect is expected to be fixed in a future release.
|
1149
|
+
|
1150
|
+
|
1151
|
+
Solution:
|
1152
|
+
|
1153
|
+
No solution is available for this issue at the present time.
|
1154
|
+
|
1155
|
+
|
1156
|
+
Modifying SQL Statements
|
1157
|
+
------------------------
|
1158
|
+
|
1159
|
+
In the Teradata JDBC Driver, version 3.1 and earlier releases, the Teradata
|
1160
|
+
JDBC driver modified the SQL statement text of PreparedStatements, replacing
|
1161
|
+
all occurrences of "?" with "IS NULL" whenever the application called setNull()
|
1162
|
+
for the "?" in a WHERE clause. For example, if the SQL statement was:
|
1163
|
+
|
1164
|
+
select * from table1 where colid = ?
|
1165
|
+
|
1166
|
+
and the application called setNull(1), then the Teradata JDBC driver would
|
1167
|
+
change the SQL statement to:
|
1168
|
+
|
1169
|
+
select * from table1 where colid IS NULL
|
1170
|
+
|
1171
|
+
This was an incorrect procedure to use. The problem was fixed in the Teradata
|
1172
|
+
JDBC Driver version 3.2, but the fix could change the output of some applications.
|
1173
|
+
|
1174
|
+
|
1175
|
+
Solution:
|
1176
|
+
|
1177
|
+
Refer to the Teradata JDBC Driver User Guide for details on how to change
|
1178
|
+
the application to work correctly with the Teradata JDBC Driver.
|
1179
|
+
|
1180
|
+
|
1181
|
+
Calling Stored Procedures
|
1182
|
+
-------------------------
|
1183
|
+
|
1184
|
+
In the Teradata JDBC Driver, version 3.1 and earlier releases, the Teradata
|
1185
|
+
JDBC driver permitted stored procedures to be called using the PreparedStatement
|
1186
|
+
interface, and the stored procedure's INOUT and OUT parameter output values
|
1187
|
+
were returned as a single-row result set from the executeQuery method.
|
1188
|
+
|
1189
|
+
Note that the JDBC standard only supports calling stored procedures using the
|
1190
|
+
CallableStatement interface. Also, because stored procedures do not return a
|
1191
|
+
result set, only the execute and executeUpdate methods are supported for calling
|
1192
|
+
a stored procedure. The JDBC 3.0 specification requires a JDBC driver to throw
|
1193
|
+
a SQLException from executeQuery when that method is used to execute a SQL
|
1194
|
+
statement that does not return a result set.
|
1195
|
+
|
1196
|
+
The Teradata JDBC Driver is evolving towards full compliance with that JDBC 3.0
|
1197
|
+
specification requirement:
|
1198
|
+
|
1199
|
+
- This release of the Teradata JDBC Driver no longer returns a stored
|
1200
|
+
procedure's INOUT and OUT parameter output values as a single-row result
|
1201
|
+
set from the PreparedStatement.executeQuery method. Instead, an empty result
|
1202
|
+
set is returned.
|
1203
|
+
|
1204
|
+
- A future release of the Teradata JDBC Driver will throw a SQLException from
|
1205
|
+
executeQuery when that method is used to execute a SQL statement that does
|
1206
|
+
not return a result set, such as a SQL CALL statement.
|
1207
|
+
|
1208
|
+
Applications using the PreparedStatement interface to call a stored procedure
|
1209
|
+
may encounter the difference in behavior.
|
1210
|
+
|
1211
|
+
|
1212
|
+
Solution:
|
1213
|
+
|
1214
|
+
Modify the application to call stored procedures by using the CallableStatement
|
1215
|
+
interface, and either the execute or executeUpdate methods.
|
1216
|
+
|
1217
|
+
According to the JDBC standard, the proper sequence for calling a stored
|
1218
|
+
procedure is as follows:
|
1219
|
+
- Use Escape Syntax curly braces: {call storedproc(arg1, arg2, arg3)}
|
1220
|
+
- Call Connection.prepareCall to use the CallableStatement interface.
|
1221
|
+
- Prior to executing the statement, bind all input values for IN and INOUT
|
1222
|
+
parameters using the CallableStatement setter methods setInt, setString, etc.
|
1223
|
+
- Prior to executing the statement, register all stored procedure INOUT and OUT
|
1224
|
+
parameters with the CallableStatement.registerOutParameter method.
|
1225
|
+
- Use either the CallableStatement.execute or CallableStatement.executeUpdate
|
1226
|
+
method to execute the SQL CALL statement.
|
1227
|
+
- After executing the statement, use the CallableStatement getter methods such
|
1228
|
+
as getInt, getString, etc. to obtain the stored procedure's INOUT and OUT
|
1229
|
+
parameter output values.
|
1230
|
+
|
1231
|
+
|
1232
|
+
Installation
|
1233
|
+
------------
|
1234
|
+
|
1235
|
+
This release of the Teradata JDBC Driver is distributed as platform-independent
|
1236
|
+
jar files. For downloading convenience, the platform-independent jar files are
|
1237
|
+
bundled together and provided in both zip format and tar format.
|
1238
|
+
|
1239
|
+
TeraJDBC__indep_indep.15.10.00.09.zip and TeraJDBC__indep_indep.15.10.00.09.tar
|
1240
|
+
both contain the same set of platform-independent files:
|
1241
|
+
|
1242
|
+
readme.txt - this file
|
1243
|
+
terajdbc4.jar - the Teradata JDBC Driver
|
1244
|
+
tdgssconfig.jar - the Teradata security configuration
|
1245
|
+
|
1246
|
+
Download either the zip file or the tar file, and unzip (or untar) the downloaded
|
1247
|
+
file into a directory of your choice, and then set your classpath to refer to the
|
1248
|
+
necessary jar files.
|
1249
|
+
|
1250
|
+
Your classpath must include:
|
1251
|
+
|
1252
|
+
terajdbc4.jar
|
1253
|
+
tdgssconfig.jar
|
1254
|
+
|
1255
|
+
Your classpath must NOT include any jar files from any previous releases of
|
1256
|
+
the Teradata JDBC Driver. It is recommended, but not required, that any
|
1257
|
+
previous release of the Teradata JDBC Driver be uninstalled prior to
|
1258
|
+
downloading and using this release of the Teradata JDBC Driver.
|
1259
|
+
|
1260
|
+
For systems running only Java applications that use the Teradata JDBC Driver,
|
1261
|
+
the tdgssconfig.jar file replaces the TdgssUserConfigFile.xml file from the
|
1262
|
+
previous release of the Teradata JDBC Driver. If the TdgssUserConfigFile.xml
|
1263
|
+
file has not been customized for the site, then the TdgssUserConfigFile.xml
|
1264
|
+
file is no longer needed and can be removed.
|
1265
|
+
|
1266
|
+
For systems running both C/C++ and Java applications that access the Teradata
|
1267
|
+
Database, it is possible to share the TeraGSS security configuration. This is
|
1268
|
+
appropriate if the TdgssUserConfigFile.xml file has been customized for the
|
1269
|
+
site. To enable sharing, the Java classpath should include the TeraGSS
|
1270
|
+
directory that contains the TdgssUserConfigFile.xml file, and the classpath
|
1271
|
+
should not include the tdgssconfig.jar file.
|
1272
|
+
|
1273
|
+
|
1274
|
+
Documentation
|
1275
|
+
-------------
|
1276
|
+
|
1277
|
+
Documentation for how to use the Teradata JDBC Driver with supported application
|
1278
|
+
servers is available on the http://www.teradata.com Teradata Download Center in
|
1279
|
+
the Teradata JDBC Driver section.
|