column.h
来自「适合于Unix/Linux下的一个持久数据库连接池」· C头文件 代码 · 共 29 行
H
29 行
// Copyright (c) 1999-2001 David Muse// See the COPYING file for more information.#ifndef COLUMN_H#define COLUMN_Hclass column { public: char *name; uint16_t type; char *typestring; uint16_t typestringlength; uint32_t length; uint32_t longest; unsigned char longdatatype; uint32_t precision; uint32_t scale; uint16_t nullable; uint16_t primarykey; uint16_t unique; uint16_t partofkey; uint16_t unsignednumber; uint16_t zerofill; uint16_t binary; uint16_t autoincrement;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?