mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 17:30:53 +08:00
71 lines
1.4 KiB
C++
71 lines
1.4 KiB
C++
|
// mysql.cpp : <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̨Ӧ<CCA8>ó<EFBFBD><C3B3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڵ㡣
|
|||
|
//
|
|||
|
|
|||
|
#include "stdafx.h"
|
|||
|
|
|||
|
// <20><>ѯ<EFBFBD><D1AF><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
static int tbl_select(acl::db_handle& db)
|
|||
|
{
|
|||
|
const char* sql = "select value, category, type from black_white_list";
|
|||
|
|
|||
|
if (db.sql_select(sql) == false)
|
|||
|
{
|
|||
|
printf("select sql error\r\n");
|
|||
|
return (-1);
|
|||
|
}
|
|||
|
|
|||
|
printf("\r\n---------------------------------------------------\r\n");
|
|||
|
|
|||
|
const acl::db_rows* result = db.get_result();
|
|||
|
if (result)
|
|||
|
{
|
|||
|
const std::vector<acl::db_row*>& rows = result->get_rows();
|
|||
|
for (size_t i = 0; i < rows.size(); i++)
|
|||
|
{
|
|||
|
const acl::db_row* row = rows[i];
|
|||
|
for (size_t j = 0; j < row->length(); j++)
|
|||
|
printf("%s, ", (*row)[j]);
|
|||
|
printf("\r\n");
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
int ret = (int) db.length();
|
|||
|
|
|||
|
// <20>ͷŲ<CDB7>ѯ<EFBFBD><D1AF><EFBFBD><EFBFBD>
|
|||
|
db.free_result();
|
|||
|
return (ret);
|
|||
|
}
|
|||
|
|
|||
|
int main(void)
|
|||
|
{
|
|||
|
|
|||
|
const char* dbaddr = "127.0.0.1:16811";
|
|||
|
const char* dbname = "inc365_antispam_db";
|
|||
|
const char* dbuser = "root", *dbpass = "";
|
|||
|
acl::db_mysql db(dbaddr, dbname, dbuser, dbpass);
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>־<EFBFBD><D6BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ļ
|
|||
|
acl_msg_stdout_enable(1);
|
|||
|
|
|||
|
if (db.open(NULL) == false)
|
|||
|
{
|
|||
|
printf("open db(%s) error\r\n", dbname);
|
|||
|
getchar();
|
|||
|
return 1;
|
|||
|
}
|
|||
|
|
|||
|
printf("open db %s ok\r\n", dbname);
|
|||
|
|
|||
|
int ret = tbl_select(db);
|
|||
|
if (ret >= 0)
|
|||
|
{
|
|||
|
printf(">>select ok\r\n");
|
|||
|
}
|
|||
|
else
|
|||
|
printf(">>select error\r\n");
|
|||
|
|
|||
|
printf("mysqlclient lib's version: %ld, info: %s\r\n",
|
|||
|
db.mysql_libversion(), db.mysql_client_info());
|
|||
|
return 0;
|
|||
|
}
|