LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1497|回复: 1

mysql中用c如何检查某个表是否存在?

[复制链接]
发表于 2004-4-26 21:28:50 | 显示全部楼层 |阅读模式
我使用mysql_list_tables(server, tablename)
但不知道应该怎么判断结果。
 楼主| 发表于 2004-4-26 23:28:20 | 显示全部楼层

找到了一个方法

但不知道还有没有更好的方法

  1. MYSQL_RES * table = mysql_list_tables(server, "table");
  2. mysql_store_result(table);
  3. if(table && !mysql_num_rows(table))
  4. {
  5.       /* doesn't exists! */
  6. }
  7. else if(table && mysql_num_rows(table))
  8. {
  9.       /*The table exists*/
  10. }
  11. else
  12. {
  13.       /* error occurred!*/
  14. }
  15. mysql_free_result(table);
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表