SQL React-Admin 演示项目正在使用的数据库

SQL Database that React-Admin Demo Project is using

React-Admin 源使用虚假数据进行开发。 https://github.com/marmelab/react-admin

在其文档中,我找到了一个外部数据提供者的来源,Xmysql: soaserele/aor-xmysql。 https://marmelab.com/react-admin/DataProviders.html

我想 运行 他们的演示项目与 xmysql 数据提供者。 为此,我需要使用来自演示项目的相同数据集设置 mysql 数据库。

https://www.dropbox.com/sh/amac5khh7pi542v/AAA3OsN-BMhAheJBTigx1MRNa?dl=0

react-admin's demo data

演示数据由名为数据生成器的实用程序在客户端生成(参见 https://github.com/marmelab/react-admin/tree/master/examples/data-generator)。

此实用程序可以独立使用,在这种情况下,您可以使用它生成 JSON(但不是 SQL)。

所以从 JSON 得到 SQL 的唯一方法是使用在线转换器(比如 http://convertjson.com/json-to-sql.htm). Alternately, load the JSON directly in MySQL using the LOAD DATA INFILE statement (see https://mysqlserverteam.com/taking-the-new-mysql-5-7-json-features-for-a-test-drive/)。