Perl:如何验证对“XML::eXistDB::RPC”的成功调用
我正在使用 eXist 数据库编写一个小型 Perl 应用程序,我想知道的是: 我怎样才能看到我的通话
my $eXist = XML::eXistDB::RPC->new( destination=>$eXist_db, repository=>$bank, user=>"admin", password=>"pass" ) ;
是否成功?
谢谢
i am writing a small perl app using the eXist database, and i am wondering is:
how can i see that my call
my $eXist = XML::eXistDB::RPC->new( destination=>$eXist_db, repository=>$bank, user=>"admin", password=>"pass" ) ;
is successful or not ?
thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据文档:
也许这也适用于构造函数,尝试:
现在,如果 $rc != 0 则出现错误。
According to the docs:
Maybe this applies also for the constructor, try:
now, if $rc != 0 there was an error.
当对象初始化失败时,将通过 Log::Report 发送消息,因此请挂钩。
仅当程序员忽略设置
rpc
或destination
参数时才会发生这种情况。new
构造函数将始终返回一个对象实例。When object initialisation fails, it will be messaged through Log::Report, so hook into that.
This only happens if the programmer to neglected to set either
rpc
ordestination
parameter. Thenew
constructor will always return an object instance.