abort.c

来自「适合于Unix/Linux下的一个持久数据库连接池」· C语言 代码 · 共 19 行

C
19
字号
// Copyright (c) 1999-2001  David Muse// See the file COPYING for more information#include <sqlrconnection.h>void sqlrcursor_svr::abort() {	// Very important...	// Do not cleanUpData() here, otherwise result sets that were suspended	// after the entire result set was fetched won't be able to return	// column data when resumed.	suspendresultset=false;	busy=false;}void sqlrcursor_svr::cleanUpData(bool freeresult, bool freebinds) {	// by default, do nothing...	return;}

⌨️ 快捷键说明

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