mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-21 20:27:46 +00:00
13 lines
277 B
C
13 lines
277 B
C
![]() |
#include "MySqlBase.h"
|
||
|
#include "Connection.h"
|
||
|
#include "Statement.h"
|
||
|
#include "PreparedStatement.h"
|
||
|
#include "ResultSet.h"
|
||
|
#include "PreparedResultSet.h"
|
||
|
#include <memory>
|
||
|
|
||
|
namespace Mysql
|
||
|
{
|
||
|
using PreparedResultSetScopedPtr = std::unique_ptr< Mysql::PreparedResultSet >;
|
||
|
}
|