| 83 | ~vtkODBCBoundParameter() { delete[] this->Data; } |
| 84 | |
| 85 | void SetData(const char* data, unsigned long size) |
| 86 | { |
| 87 | delete[] this->Data; |
| 88 | this->BufferSize = size; |
| 89 | this->DataLength = size; |
| 90 | this->Data = new char[size]; |
| 91 | memcpy(this->Data, data, size); |
| 92 | } |
| 93 | |
| 94 | char* Data; // Buffer holding actual data |
| 95 | unsigned long DataLength; |
no outgoing calls