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

📄 tabexist.cpp

📁 小型数据库源代码较多
💻 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 + -