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.

