Where is phpMyAdmin in the file?
4 answers
First, it is clearly not about phpMyAdmin , but about mysql command line tool.
Secondly, in the command you sent, the utility mysql
doesn't look for the filename at all, it reads stdin - your shell (like bash or windows cmd
) opens the file and sets it as stdin mysql
.
Third, all relative filesystem paths (any path that does not start with a root) refer to the current working directory.
+2
source to share