mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
24 lines
307 B
C++
24 lines
307 B
C++
#ifndef MYSQLXX_USEQUERYRESULT_H
|
|
#define MYSQLXX_USEQUERYRESULT_H
|
|
|
|
#include <mysqlxx/ResultBase.h>
|
|
#include <mysqlxx/Row.h>
|
|
|
|
|
|
namespace mysqlxx
|
|
{
|
|
|
|
class Connection;
|
|
|
|
class UseQueryResult : public ResultBase
|
|
{
|
|
public:
|
|
UseQueryResult(MYSQL_RES & res_, Connection & conn_);
|
|
|
|
Row fetch_row();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|