📄 settings.h
字号:
/* * psql - the PostgreSQL interactive terminal * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * * $PostgreSQL: pgsql/src/bin/psql/settings.h,v 1.26 2005/10/15 02:49:40 momjian Exp $ */#ifndef SETTINGS_H#define SETTINGS_H#include "libpq-fe.h"#include "variables.h"#include "print.h"#define DEFAULT_FIELD_SEP "|"#define DEFAULT_RECORD_SEP "\n"#if defined(WIN32) || defined(__CYGWIN__)#define DEFAULT_EDITOR "notepad.exe"#else#define DEFAULT_EDITOR "vi"#endif#define DEFAULT_PROMPT1 "%/%R%# "#define DEFAULT_PROMPT2 "%/%R%# "#define DEFAULT_PROMPT3 ">> "typedef struct _psqlSettings{ PGconn *db; /* connection to backend */ int encoding; FILE *queryFout; /* where to send the query results */ bool queryFoutPipe; /* queryFout is from a popen() */ printQueryOpt popt; VariableSpace vars; /* "shell variable" repository */ char *gfname; /* one-shot file output argument for \g */ bool notty; /* stdin or stdout is not a tty (as determined * on startup) */ bool getPassword; /* prompt the user for a username and password */ FILE *cur_cmd_source; /* describe the status of the current main * loop */ bool cur_cmd_interactive; int sversion; /* backend server version */ const char *progname; /* in case you renamed psql */ char *inputfile; /* for error reporting */ char *dirname; /* current directory for \s display */ unsigned lineno; /* also for error reporting */ bool timing; /* enable timing of all queries */ PGVerbosity verbosity; /* current error verbosity level */ FILE *logfile; /* session log file handle */} PsqlSettings;extern PsqlSettings pset;#define QUIET() (GetVariableBool(pset.vars, "QUIET"))#ifndef EXIT_SUCCESS#define EXIT_SUCCESS 0#endif#ifndef EXIT_FAILURE#define EXIT_FAILURE 1#endif#define EXIT_BADCONN 2#define EXIT_USER 3#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -