| Class and Description |
|---|
| cds.util.AsciiTable
This class suffers a lot of memory issues when dealing with
large tables.
LargeAsciiTable should be
used instead. |
| Field and Description |
|---|
| uws.job.UWSJob.dateFormat
Replaced by
ISO8601Format. |
| uws.job.UWSJob.DEFAULT_DATE_FORMAT
Replaced by
ISO8601Format. |
| tap.config.TAPConfiguration.DEFAULT_UPLOAD_MAX_FILE_SIZE
Since 2.3, use the property "upload_max_db_limit"
and "upload_max_request_size" instead.
|
| tap.config.TAPConfiguration.KEY_DEFAULT_UPLOAD_LIMIT
Since 2.3, use the property "upload_max_db_limit"
instead.
|
| tap.config.TAPConfiguration.KEY_UPLOAD_MAX_FILE_SIZE
Since 2.3, use the property "upload_max_db_limit"
and "upload_max_request_size" instead.
|
| uws.service.request.MultipartParser.SIZE_LIMIT
Since 4.4 ; barely used and never worked (with COS).
|
| uws.service.file.UWSFileManager.TMP_UPLOAD_DIR
Since 4.4, use
UWSFileManager.getTmpDirectory() and
UWSFileManager.setTmpDirectory(File) instead. |
| Constructor and Description |
|---|
| tap.data.ResultSetTableIterator(ResultSet, JDBCTranslator)
Use
ResultSetTableIterator.ResultSetTableIterator(ResultSet, JDBCTranslator, String) instead ; using the translator without the DBMS name is generally not enough.
It is then preferable to give also the DBMS name. |
| tap.data.ResultSetTableIterator(ResultSet, JDBCTranslator, String, DBColumn[])
Use
ResultSetTableIterator.ResultSetTableIterator(ResultSet, DBColumn[], JDBCTranslator, String) instead ; only the position of the parameters has changed. |
| tap.data.ResultSetTableIterator(ResultSet, String)
Use
ResultSetTableIterator.ResultSetTableIterator(ResultSet, JDBCTranslator, String) instead ; using the translator without the DBMS name is generally not enough.
It is then preferable to give also the DBMS name. |