changed show
This commit is contained in:
parent
f0d54ab69d
commit
e9e631aa6b
1 changed files with 2 additions and 2 deletions
|
@ -65,9 +65,9 @@ void db_engine::saveCmd(){
|
||||||
cmdList.clear();
|
cmdList.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
//display the table currently stored in memory
|
//display the database
|
||||||
void db_engine::showCmd(string tableName){
|
void db_engine::showCmd(string tableName){
|
||||||
cmdList.push_back("CREATE TABLE " + tableName + "");
|
cmdList.push_back("SHOW " + tableName + "");
|
||||||
}
|
}
|
||||||
|
|
||||||
//add a tuple to a table in the memory
|
//add a tuple to a table in the memory
|
||||||
|
|
Reference in a new issue