## list-mysql-tables.ps1 - Lists all tables of a MySQL database This PowerShell script lists all tables of the given MySQL database. ## Parameters ```powershell list-mysql-tables.ps1 [-server] [-database] [-dbuser] [-dbpass] [] -server Required? true Position? 1 Default value Accept pipeline input? false Accept wildcard characters? false -database Required? true Position? 2 Default value Accept pipeline input? false Accept wildcard characters? false -dbuser Required? true Position? 3 Default value Accept pipeline input? false Accept wildcard characters? false -dbpass Required? true Position? 4 Default value Accept pipeline input? false Accept wildcard characters? false [] This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. ``` ## Example ```powershell PS> ./list-mysql-tables ``` ## Notes Author: Markus Fleschutz / License: CC0 ## Related Links https://github.com/fleschutz/PowerShell *Generated by convert-ps2md.ps1 using the comment-based help of list-mysql-tables.ps1*