Closed gfilgueiras closed 5 years ago
Just for everyone know.... I fix it edited the file "databasesNode.js" in "~/.vscode/extensions/formulahendry.vscode-mysql-0.4.0/out/model/"
Replace line start 27 for this code below.
getTreeItem() {
if(this.database != "information_schema")
{
return {
label: this.database,
collapsibleState: vscode.TreeItemCollapsibleState.Collapsed,
contextValue: "database",
iconPath: path.join(__filename, "..", "..", "..", "resources", "database.svg"),
};
}
}
Hi guys !
Is iy possible hide the "information_schema" ? I already try to do it by permission for user on MySql, but i couldn't.
Any help :) Thanks a million