我正在通过命令行使用DBIx::Class:Schema::Loader从我的数据库为我的 Catalyst 应用程序的 DBIx::Class 生成模式。这是我使用的命令:
script/myapp_create.pl model DB DBIC::Schema myapp::Schema create=static \
components=TimeStamp,PassphraseColumn dbi:mysql:mydb 'root' '' '{ AutoCommit => 1 }'
但是,此命令现在不起作用,因为我的数据库位于单独的计算机上。我如何告诉它连接到什么IP?谢谢!