| 440 | // IscStatement |
| 441 | |
| 442 | IscStatement::IscStatement(IscConnection& conn) : |
| 443 | Statement(conn), |
| 444 | m_iscProvider(*(IscProvider*) conn.getProvider()), |
| 445 | m_iscConnection(conn), |
| 446 | m_handle(0), |
| 447 | m_in_xsqlda(NULL), |
| 448 | m_out_xsqlda(NULL) |
| 449 | { |
| 450 | } |
| 451 | |
| 452 | IscStatement::~IscStatement() |
| 453 | { |
nothing calls this directly
no test coverage detected