|
楼主 |
发表于 2004-4-26 23:28:20
|
显示全部楼层
找到了一个方法
但不知道还有没有更好的方法
- MYSQL_RES * table = mysql_list_tables(server, "table");
- mysql_store_result(table);
- if(table && !mysql_num_rows(table))
- {
- /* doesn't exists! */
- }
- else if(table && mysql_num_rows(table))
- {
- /*The table exists*/
- }
- else
- {
- /* error occurred!*/
- }
- mysql_free_result(table);
复制代码 |
|