我们可以在不连接服务器的情况下用perl生成mysql数据库吗?
最近我遇到了一个用 tcl 编写的工具,它可以在不连接服务器的情况下生成 mysql 数据库。它使用了一些c库,这可以在perl中完成吗?抱歉,如果这是一个太基本的问题。这对我来说是全新的,找不到太多信息。
编辑:
“生成 mysql 数据库”我的意思是它生成一个包含 mysql 表的目录。我可以在 mysql 中创建到该目录的软链接并从中查询数据
Recently i came across a tool written in tcl which generates a mysql database without connecting to a server. It uses some c libraries, can this be done in perl? Sorry if this is too basic question. This is completely new to me, couldnt find much information.
EDIT:
By "generates a mysql database" i mean it generates a directory with mysql tables. I can create a soft link to that directory in mysql and query data from that
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以手动生成一个 SQL 文件,该文件在导入到 mysql 数据库时构建数据库。我建议不要多次创建二进制表并将它们复制到 mysql 的 data 文件夹下。
另一方面,如果您想在本地使用 SQL 数据库,而无需运行单独的服务器进程,请尝试 SQLite。
You can generate an SQL file maually that builds up a database when imported into a mysql database. I would advise against manyually creating binary tables and copying them under mysql's
data
folder.On the other hand if you want to use SQL databases locally, without having to run a separate server process try SQLite.