摘要:
一、函数定义的方式 (1)普通方式 语法: function 函数名(参数){ 函数体 } Code: function method(){ alert("testMethod"); } method(); Code: function method(){ alert("testMethod"); 阅读全文
摘要:
当我们进行数据库迁移的时候有时候会遇到 The user specified as a definer ('root'@'%') does not exist的问题, 解决方法如下,如下命令 第一步 grant all privileges on *.* to root@"%" identified 阅读全文
摘要:
有时候我们需要对mysql的数据库数据进行整体迁移,数据路径如下 C:\Documents and Settings\All Users 数据全在如何所示的路径下,只要进行copy迁移,新的数据库中就有对应的数据库信息 阅读全文