导入 Sakila 数据库到 fopadmin
import Sakila Database to PhpMyAdmin
我想在 Windows 中将 Sakila DB 导入到 PhpMyAdmin 但我不能,我可以在导入部分将 Schema 导入到 phpmyadmin 但我不能将 sakila 数据导入到那里,当我这样做时我是收到以下错误 -
No data was received to import. Either no file name was submitted, or
the file size exceeded the maximum size permitted by your PHP
configuration. See FAQ 1.16.
完成此 link。
mysqli dump example
如果您的数据库文件超过 2MB,那么您必须使用命令提示符。
mysql -u username -p password
use databsname
source PATH-TO-SQL-FILE (E:/Folder/File.sql)
我想在 Windows 中将 Sakila DB 导入到 PhpMyAdmin 但我不能,我可以在导入部分将 Schema 导入到 phpmyadmin 但我不能将 sakila 数据导入到那里,当我这样做时我是收到以下错误 -
No data was received to import. Either no file name was submitted, or the file size exceeded the maximum size permitted by your PHP configuration. See FAQ 1.16.
完成此 link。 mysqli dump example
如果您的数据库文件超过 2MB,那么您必须使用命令提示符。
mysql -u username -p password
use databsname
source PATH-TO-SQL-FILE (E:/Folder/File.sql)