elavarasan has asked for the wisdom of the Perl Monks concerning the following question:
Hai i need to access quicbooks from perl using linux, This is for store and retrieve the data from online storage, i got some coding from the net but i dont know how to use, because it requires RSSBus SQLBroker, in which i dont know how to get this and where to install, i have perl and linux please help me my code is given below
#!/usr/bin/perl use strict; use DBI(); my $dbh = DBI->connect("DBI:mysql:database=QuickBooksSqlBroker;host=lo +calhost:3307", "root", "my_password", {'RaiseError' => 1}); my $result = $dbh->prepare("SELECT * FROM Customers"); $result->execute(); while (my $row = $result->fetchrow_arrayref) { my $csv = join(',', @$row); print "$csv "; } $result->finish(); $dbh->disconnect();
Thank You !!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: how to access quickbooks from perl in linux
by ww (Archbishop) on Apr 30, 2013 at 17:59 UTC | |
|
Re: how to access quickbooks from perl in linux
by igelkott (Priest) on May 01, 2013 at 07:25 UTC |