Perl DBI DBD::mysql 从 mysql 服务器获取数据库名称
我有一个生产服务器,每天在 MySql 中创建不同的数据库 服务器。
我需要编写一个在一天结束时运行的 perl 脚本
并执行以下操作。
连接到mysql服务器并获取所有数据库名称的列表 确实如此。然后连接到每个设备并检查存储的数据。
我唯一无法使用 DBI 和 DBD::mysql 做的事情 从 mysql 服务器读取数据库名称。
我找不到任何无需连接即可工作的 DBI 功能 首先是数据库。
任何帮助/示例/URL 都会非常有帮助:-)
I have a production server that creates different databases everyday in a MySql
server.
i need to write a perl script
that would run at the end of the day
and do the following.
connect to the mysql server and get the list of all the names of the databases
it has. then connect to each of them and check the data that was stored.
the only thing i wasn't able to do with DBI and DBD::mysql
was read the database names from the mysql server.
i wasn't able to find any DBI function that would work without connecting to a
database first.
any help/example/URL would be very helpful :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅显示授权给您连接的用户的数据库。
Only databases authorized to the user you connect with will be shown.
尝试使用 INFORMATION_SCHEMA 数据库 - 该数据库名称始终存在并且因此可以硬编码到DBI中。
更具体,相当于
显示数据库
是:Try using INFORMATION_SCHEMA database - that database name always exists and thus can be hard-coded into DBI.
To be more specific, the equivalent to
SHOW DATABASES
is: