tinySQL
0.1
A self-contained database management system
|
15 catalog_manager.
UpdateIndex(table_name,attr_name,index_name);
21 std::string table_name = catalog_manager.indexName2table(index_name);
22 catalog_manager.
DropIndex(table_name, index_name);
31 void Exec_Engine::selectRecord(std::string &table_name, std::vector<std::string>& attr_names, std::vector<Where>& wheres, std::vector<MemoryTuple>& result){
32 if(attr_names.empty()){
37 result = record_manager.
SelectRecord(table_name, wheres);
42 result = record_manager.
SelectRecord(table_name, attr_names);
45 result = record_manager.
SelectRecord(table_name, attr_names, wheres);
48 std::sort(result.begin(), result.end());
void deleteRecord(std::string &table_name, std::vector< Where > &data)
Delete records by conditions.
void DropTableFile(const std::string &table_name)
Drop a Table File object.
void CreateIndex(std::string table_name, const std::string &target_attr)
Create a Index on an attribute that has already exists.
void UpdateIndex(const std::string &table_name, const std::string &attr_name, const std::string &index_name)
Update Index.
void CreateTable(const std::string &table_name, Attribute &attr)
Create a Table object.
void CreateTableFile(const std::string &table_name)
Create a Table File object.
std::vector< MemoryTuple > SelectRecord(std::string table_name)
返回整张表
void createTable(std::string &table_name, Attribute &attr)
Create a Table.
void selectRecord(std::string &table_name, std::vector< std::string > &attr_names, std::vector< Where > &wheres, std::vector< MemoryTuple > &result)
Select records by conditions.
Attribute getTableAttributes(const std::string &table_name)
Get the Table Attributes.
void DropIndex(const std::string &indexName)
Drop an Index of an attr. User should make sure the table exists.
int DeleteRecord(std::string table_name)
删除对应表中所有记录(不删除表文件)
void createIndex(std::string &table_name, std::string &index_name, std::string &attr_name)
Create Index on a table's attribute.
void dropTable(std::string &table_name)
Delete a Table.
void DropIndex(const std::string &table_name, const std::string &index_name)
Delete an index file.
void dropIndex(std::string &index_name)
Delete the index of a certain index on a table.
The attributes for a schema.
Attribute getAttribute(const std::string &table_name)
Get the Attribute from table name.
void DropTable(const std::string &table_name)
Delete a table.
void InsertRecord(std::string table_name, const MemoryTuple &tuple)
向对应表中插入一条记录
void CreateIndex(const std::string &indexName)
Create an Index of an attr. Actually creates an has_index file with a head block. File name conventio...
void insertRecord(std::string &table_name, MemoryTuple &row)
Insert a piece of record.