概要

sRecordは seasar2の S2JDBC, それをまねて作った拙作teeple2のActiveRecordと似たような使い方でSalesforceのデータを取り扱うことができるPHP5ライブラリです。google codeにオープンソースとして公開していますので是非ご利用ください。
http://code.google.com/p/srecord4p/

SalesforceのAPIでは複数のレコードをまとめて処理することが可能です。これにより通信オーバヘッドを軽減することができます。
Srecord_ActiveRecord#create()が単一レコードの作成だったのに対して、Srecord_Schema::createAll()を使うことで複数レコードを一度に作成できます。

createAll

Srecord_Schema::createAll()は Srecordオブジェクトの配列を引数に取り、それらのデータにしたがって全てのレコードをSalesforceに登録します。各レコードの結果は、各オブジェクトのgetState()メソッドで確認することができます。

01$a1 = new Sobject_Account();
02$a1->Name = 'Scott';
03 
04$a2 = new Sobject_Account();
05$a2->Name = 'Tigger';
06 
07Srecord_Schema::createAll(array($a1,$a2));
08 
09if ($a1->getState() === Srecord_ActiveRecord::STATE_SUCCESS) {
10    // success
11} else {
12    // false
13    print_r($a1->getErrors());
14}

updateAll, upsertAll, deleteAll, undeleteAll も同様です。

updateAll

1$records = Srecord_Account::neu()->eq('Type', 'Prospect')->select();
2foreach ($records as $record) {
3    $record->Type = 'Other';
4}
5$successAll = Srecord_Schema::updateAll($records);
6if (! $successAll) {
7    // handle error
8}

upsertAll

01$records = array();
02for ($i=0; $i<count($_POST['extid']); $i++) {
03    $extid = $_POST['extid'][$i];
04    $name = $_POST['name'][$i];
05    $account = new Sobject_Account();
06    $account->extid__c = $extid;
07    $account->Name = $name;
08    $records[] = $account;
09}
10 
11$successAll = Srecord_Schema::upsertAll('extid__c', $records);
12if (! $successAll) {
13    // handle error
14}

deleteAll

1$records = Srecord_Account::neu()->eq('Type', 'Prospect')->select();
2$successAll = Srecord_Schema::deleteAll($records);
3if (! $successAll) {
4    // handle error
5}

undeleteAll

1$records = Srecord_Account::neu()->eq('Type', 'Prospect')->select();
2$successAll = Srecord_Schema::undeleteAll($records);
3if (! $successAll) {
4    // handle error
5}

コメントは受け付けていません。