| title | getSubString Method (SQLServerNClob) |
|---|---|
| description | getSubString Method (SQLServerNClob) |
| author | David-Engel |
| ms.author | davidengel |
| ms.date | 01/19/2017 |
| ms.service | sql |
| ms.subservice | connectivity |
| ms.topic | reference |
[!INCLUDEDriver_JDBC_Download]
Retrieves a copy of the specified substring in the NCLOB based on the specified starting position and the number of characters to copy.
public java.lang.String getSubString(long pos,
int length)
pos
The first character of the substring to be extracted. The first character is at position 1.
length
The number of consecutive characters to be copied.
A String that is the specified substring in the NCLOB.
This getSubString method is specified by the getSubString method in the java.sql.NClob interface.
Trying to get zero characters from a null or zero-length NCLOB returns an empty string. Trying to get any length of characters at any position other than position 1 in a zero-length NCLOB will cause a position exception to be thrown.
SQLServerNClob Methods
SQLServerNClob Members
SQLServerNClob Class