📄 ex1.c
字号:
/* $Id: ex1.c,v 1.1 2005/01/13 02:56:43 cvsroot Exp $ */
#include <stdio.h>
#include <stdlib.h>
#include "examples.h"
int table_exists(sqlo_db_handle_t dbh, char * table_name)
{
int stat;
if ( 0 > (stat = sqlo_exists(dbh, "USER_TABLES", "TABLE_NAME", table_name, NULL))) {
error_exit(dbh, "sqlo_exists");
}
return stat == SQLO_SUCCESS ? 1 : 0;
}
/* $Id: ex1.c,v 1.1 2005/01/13 02:56:43 cvsroot Exp $ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -