代码之家  ›  专栏  ›  技术社区  ›  Brent Arias

从Webmatrix导出MySQL数据库安装脚本

  •  2
  • Brent Arias  · 技术社区  · 14 年前

    有人知道强迫Webmatrix在我的本地机器上创建MySQL数据库安装脚本的诀窍吗?这就是为什么我问:

    Webmatrix help article 上面写着Webmatrix女士” publishes the (SQL Server or MySQL) database by creating scripts that run in a database that has been created for you by your hosting provider. “这真是太好了,不过当我试图通过FTP发布MySQL数据库(支持wordpress)时(我的宿主提供商不支持‘web deploy’),我无法让它工作。再说一遍,没问题,因为它已经 documented FTP protocols cannot be used to publish MySQL database . "

    但这并不能成为Webmatrix为我生成MySQL数据库安装脚本的借口。在发布步骤中,没有生成数据库安装脚本-至少我可以知道-

    简言之,正如Webmatrix所说,我死在水里,试图把我的数据库上传到我的托管提供商。有人知道强迫Webmatrix在我的本地机器上创建MySQL数据库安装脚本的诀窍吗?一旦创建,我就可以接管上传和安装过程。

    2 回复  |  直到 14 年前
        1
  •  2
  •   aruss    13 年前

    打开命令行并执行mysqldump命令

    mysqldump -u username -ppassword databasename > dumpfile.sql
    

    mysqldump手册: http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html