| 220 | UCHAR* getBuffer(); // Provide empty data buffer with the same live time |
| 221 | |
| 222 | void gatherData(SQLDAMetadata::DataBuffer& to) |
| 223 | { |
| 224 | if (metadata) |
| 225 | metadata->gatherData(to); |
| 226 | else |
| 227 | to.clear(); |
| 228 | } |
| 229 | |
| 230 | void scatterData() |
| 231 | { |
nothing calls this directly
no test coverage detected