| 266 | } |
| 267 | |
| 268 | USHORT getTextType() const |
| 269 | { |
| 270 | if (isText()) |
| 271 | return dsc_sub_type; |
| 272 | |
| 273 | if (isBlob()) |
| 274 | { |
| 275 | if (dsc_sub_type == isc_blob_text) |
| 276 | return dsc_scale | (dsc_flags & 0xFF00); |
| 277 | |
| 278 | return CS_BINARY; |
| 279 | } |
| 280 | |
| 281 | if (isDbKey()) |
| 282 | return CS_BINARY; |
| 283 | |
| 284 | return CS_NONE; |
| 285 | } |
| 286 | |
| 287 | void setTextType(USHORT ttype) |
| 288 | { |
no outgoing calls
no test coverage detected