📄 ex1.c
字号:
/* $Id: ex1.c,v 1.4 2002/08/24 12:54:47 kpoitschke 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.4 2002/08/24 12:54:47 kpoitschke Exp $ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -