| 285 | } |
| 286 | |
| 287 | void setTextType(USHORT ttype) |
| 288 | { |
| 289 | if (isText()) |
| 290 | dsc_sub_type = ttype; |
| 291 | else if (isBlob() && dsc_sub_type == isc_blob_text) |
| 292 | { |
| 293 | dsc_scale = ttype & 0xFF; |
| 294 | dsc_flags = (dsc_flags & 0xFF) | (ttype & 0xFF00); |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | USHORT getCollation() const |
| 299 | { |
no outgoing calls
no test coverage detected