sqlrdefines.h
来自「适合于Unix/Linux下的一个持久数据库连接池」· C头文件 代码 · 共 30 行
H
30 行
// Copyright (c) 1999-2001 David Muse// See the COPYING file for more information.#define MAXVAR 256#ifndef MAXPATHLEN #define MAXPATHLEN 256#endif// we're optimistic that the average query will contain 15 columns whose names// average 10 characters in length#define OPTIMISTIC_COLUMN_COUNT 15#define OPTIMISTIC_AVERAGE_COLUMN_NAME_LENGTH 10#define OPTIMISTIC_COLUMN_DATA_SIZE OPTIMISTIC_COLUMN_COUNT*\ OPTIMISTIC_AVERAGE_COLUMN_NAME_LENGTH// we're optimistic that the average query will contain 15 rows whose fields// average 15 characters in length#define OPTIMISTIC_ROW_COUNT 15#define OPTIMISTIC_AVERAGE_FIELD_LENGTH 15#define OPTIMISTIC_RESULT_SET_SIZE OPTIMISTIC_COLUMN_COUNT*\ OPTIMISTIC_ROW_COUNT*\ OPTIMISTIC_AVERAGE_FIELD_LENGTHenum columncase { MIXED_CASE, UPPER_CASE, LOWER_CASE};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?