为 mysql 上的 cakephp 定义种子脚本并给出 1 的示例
有一部分讨论种子脚本。
定义什么是种子脚本。
请给出一个使用 MySQL 作为数据库在 cakephp 上运行的 Web 应用程序的种子脚本的简单示例。
尽量减少行话。欢迎使用隐喻和类比。
就我个人而言,我通常会保留一个单独的 SQL 转储数据,每次更改架构时都会更改该数据。 这个方法对我有用。如果有更好的方法,我想知道。
Read this article via Hacker monthly magazine feb 2011.
There is a part talking about seed scripts.
Define what a seed script is.
Please give a simple example of a seed script for a webapp that runs on cakephp using MySQL as database.
Keep jargon to minimum. Metaphors and analogies are welcome.
Personally I usually keep a separate sql dump data that i change everytime i change schema.
This method works for me. If there is a better way, I want to know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
种子脚本是生成虚拟数据的脚本,可能使用随机值或可接受值的查找表。该脚本将创建将数据插入数据库所需的 SQL 查询,并且还可以执行该查询。
A seed script is a script that generates dummy data, possibly using random values or a look up table of acceptable values. The script will create the SQL queries required to insert the data into the database and may also execute the query.