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

📄 portalcmds.h

📁 PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统
💻 H
字号:
/*------------------------------------------------------------------------- * * portalcmds.h *	  prototypes for portalcmds.c. * * * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/include/commands/portalcmds.h,v 1.18 2004/12/31 22:03:28 pgsql Exp $ * *------------------------------------------------------------------------- */#ifndef PORTALCMDS_H#define PORTALCMDS_H#include "utils/portal.h"extern void PerformCursorOpen(DeclareCursorStmt *stmt, ParamListInfo params);extern void PerformPortalFetch(FetchStmt *stmt, DestReceiver *dest,				   char *completionTag);extern void PerformPortalClose(const char *name);extern void PortalCleanup(Portal portal);extern void PersistHoldablePortal(Portal portal);#endif   /* PORTALCMDS_H */

⌨️ 快捷键说明

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