Skip to content

[JDBC] PreparedStatementImpl #2418

@chernser

Description

@chernser

Description

There are some issues:

  • executeQuery() - Doesn't check if all parameters are set
  • executeUpdate() - Doesn't check if all parameters are set
  • setBytes(int parameterIndex, byte x[]) - Test ignored, implementation stores as array. But this will be covered by [client-v2] Add support of working with large strings #2263 because requires cross component change and not a trivial task
  • setObject(int parameterIndex, Object x, int targetSqlType) - target type is ignored
  • setObject(int parameterIndex, Object x, SQLType targetSqlType) - target type is ignored
  • setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength) - scaleOrLength ignored
  • setObject(int parameterIndex, Object x, SQLType targetSqlType) - type ignored
  • setNString(int parameterIndex, String value) - no tests, also relates to [client-v2] Add support of working with large strings #2263
  • setNCharacterStream(int parameterIndex, Reader value, long length) - length seems ignored, also relates to [client-v2] Add support of working with large strings #2263

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions