| 604 | //------------------------------------------------------------------------------ |
| 605 | |
| 606 | int vtkMySQLQuery::GetNumberOfFields() |
| 607 | { |
| 608 | if (!this->Active) |
| 609 | { |
| 610 | vtkErrorMacro(<< "GetNumberOfFields(): Query is not active!"); |
| 611 | return 0; |
| 612 | } |
| 613 | else |
| 614 | { |
| 615 | return static_cast<int>(mysql_num_fields(this->Internals->Result)); |
| 616 | } |
| 617 | } |
| 618 | |
| 619 | //------------------------------------------------------------------------------ |
| 620 |
no outgoing calls