Ignore:
Timestamp:
2008/04/10 03:13:40 (16 years ago)
Author:
adachi
Message:

サイバーソース決済モジュール暫定コミット

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-1/data/downloads/module/mdl_cybs/mdl_cybs.inc

    r17244 r17246  
    373373    } 
    374374 
    375     $batchId = uniqid(''); 
     375    $batchId = ''; 
     376    $objQuery = new SC_Query; 
     377    if (DB_TYPE == 'pgsql') { 
     378        $batchId = $objQuery->nextval('dtb_cybs_batch_id', 'batch_id'); 
     379    } elseif (DB_TYPE == 'mysql') { 
     380        $batchId = $batchId = $objQuery->get_auto_increment('dtb_cybs_batch_id'); 
     381    } 
     382 
    376383    $recordCount = count($arrayOrder); 
    377384 
Note: See TracChangeset for help on using the changeset viewer.