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

📄 command.h

📁 PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统
💻 H
字号:
/* * psql - the PostgreSQL interactive terminal * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * * $PostgreSQL: pgsql/src/bin/psql/command.h,v 1.22 2005/01/01 05:43:08 momjian Exp $ */#ifndef COMMAND_H#define COMMAND_H#include "settings.h"#include "print.h"#include "psqlscan.h"typedef enum _backslashResult{	CMD_UNKNOWN = 0,			/* not done parsing yet (internal only) */	CMD_SEND,					/* query complete; send off */	CMD_SKIP_LINE,				/* keep building query */	CMD_TERMINATE,				/* quit program */	CMD_NEWEDIT,				/* query buffer was changed (e.g., via \e) */	CMD_ERROR					/* the execution of the backslash command								 * resulted in an error */} backslashResult;extern backslashResult HandleSlashCmds(PsqlScanState scan_state,				PQExpBuffer query_buf);extern int	process_file(char *filename);extern bool do_pset(const char *param,		const char *value,		printQueryOpt *popt,		bool quiet);extern void SyncVariables(void);extern void UnsyncVariables(void);extern void SyncVerbosityVariable(void);#endif   /* COMMAND_H */

⌨️ 快捷键说明

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