abortresultset.c

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

C
18
字号
// Copyright (c) 1999-2001  David Muse// See the file COPYING for more information#include <sqlrconnection.h>void sqlrconnection_svr::abortResultSetCommand(sqlrcursor_svr *cursor) {	#ifdef SERVER_DEBUG	debugPrint("connection",1,"abort result set");	#endif	// 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.	cursor->abort();}

⌨️ 快捷键说明

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