Download List

프로젝트 설명

SalesForceの新しいサービスAppExchangeを使うためのノウハウを共有します。
また、sforce本家の有用な情報を日本語化します。

System Requirements

System requirement is not defined

Released at 2005-11-10 21:33
DBD::SalesForce DBD-SalesForce-0.01 (1 files Hide)

Release Notes

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.

Changelog

No Changelogs