📄 tabexist.cpp
字号:
#include "min.h"
Table* sql::tabexist()
{
//看表是否存在;存在返回上一张表的地址, 不存在返回NULL
Table* table;
for( table = tablehead; table->next; table = table->next )
if( !strcmp(table->next->name.c_str(), filename.c_str()))
return table;
return NULL;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -