⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 error_exit.c

📁 Linux下的操作oracle数据库的连接库
💻 C
字号:
#include <stdio.h>#include <stdlib.h>#include "examples.h"/* print error and exit with failure */void do_error_exit(sqlo_db_handle_t dbh, const char * file, int line, const char * msg){  printf("%s (line: %d):\n%s: %s\n",          file,         line,         msg,          sqlo_geterror(dbh));  sqlo_rollback(dbh);  sqlo_finish(dbh);  exit(EXIT_FAILURE);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -