SalesForceの新しいサービスAppExchangeを使うためのノウハウを共有します。
また、sforce本家の有用な情報を日本語化します。
NAME
DBD::SalesForce - Treat SalesForce as a datasource for DBI
SYNOPSIS
use DBI;
my $dbh = DBI->connect("dbi:SalesForce", $id, $pass);
my $sth = $dbh->prepare(qq[
SELECT id, firstname, lastname FROM contact
]);
while (my $r = $sth->fetchrow_hashref) {
...
DESCRIPTION
"DBD::SalesForce" allows you to use SalesForce as a datasource;
SalesForce can be queried using SQL *SELECT* statements, and iterated
over using standard DBI conventions.
WARNING: This is still alpha-quality software. It works for me, but that
doesn't really mean anything.