- Timestamp:
- 2011/03/04 23:24:33 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/helper/SC_Helper_CSV.php
r20487 r20507 104 104 */ 105 105 function sfGetCsvOutput($csv_id = "", $where = '', $arrVal = array(), $order = 'rank, no'){ 106 $objQuery =& SC_Query ::getSingletonInstance();106 $objQuery =& SC_Query_Ex::getSingletonInstance(); 107 107 108 108 $cols = 'no, csv_id, col, disp_name, rank, status, rw_flg, mb_convert_kana_option, size_const_type, error_check_types'; … … 215 215 $arrOutputCols = $arrOutput['col']; 216 216 217 $objQuery =& SC_Query ::getSingletonInstance();217 $objQuery =& SC_Query_Ex::getSingletonInstance(); 218 218 $objQuery->setOrder($order); 219 219 $cols = SC_Utils_Ex::sfGetCommaList($arrOutputCols, true); … … 246 246 */ 247 247 function sfDownloadCsvFromSql($sql, $arrVal = array(), $file_head = 'csv', $arrHeader = array(), $is_download = false) { 248 $objQuery =& SC_Query ::getSingletonInstance();248 $objQuery =& SC_Query_Ex::getSingletonInstance(); 249 249 250 250 // 実行時間を制限しない … … 288 288 $cols = SC_Utils_Ex::sfGetCommaList($this->arrREVIEW_CVSCOL); 289 289 290 $objQuery =& SC_Query ::getSingletonInstance();290 $objQuery =& SC_Query_Ex::getSingletonInstance(); 291 291 $objQuery->setOption($option); 292 292 … … 310 310 $arrOutputCols = $arrOutput['col']; 311 311 312 $objQuery =& SC_Query ::getSingletonInstance();312 $objQuery =& SC_Query_Ex::getSingletonInstance(); 313 313 $objQuery->setOrder('rank DESC'); 314 314 … … 341 341 $cols = SC_Utils_Ex::sfGetCommaList($arrCsvOutputCols); 342 342 343 $objQuery =& SC_Query ::getSingletonInstance();343 $objQuery =& SC_Query_Ex::getSingletonInstance(); 344 344 $objQuery->setOption($option); 345 345
Note: See TracChangeset
for help on using the changeset viewer.
