チェンジセット 94: trunk/install/php/reserveepgcomp.php
- コミット日時:
- 2010/02/28 22:28:26 (15 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
trunk/install/php/reserveepgcomp.php
r83 r94 72 72 //min pidを探す 73 73 $query = "SELECT min(pid) FROM foltia_subtitle "; 74 $rs = m_query($con, $query, "DBクエリに失敗しました"); 75 $maxrows = pg_num_rows($rs); 76 if ($maxrows == 0){ 74 // $rs = m_query($con, $query, "DBクエリに失敗しました"); 75 $rs = sql_query($con, $query, "DBクエリに失敗しました"); 76 $rowdata = $rs->fetch(); 77 if (! $rowdata) { 77 78 $insertpid = -1 ; 78 79 }else{ 79 $rowdata = pg_fetch_row($rs, 0);80 81 80 $insertpid = $rowdata[0]; 82 81 if ($insertpid > 0){ … … 88 87 // next 話数を探す 89 88 $query = "SELECT max(countno) FROM foltia_subtitle WHERE tid = 0"; 90 $rs = m_query($con, $query, "DBクエリに失敗しました"); 91 $maxrows = pg_num_rows($rs); 92 if ($maxrows == 0){ 89 // $rs = m_query($con, $query, "DBクエリに失敗しました"); 90 $rs = sql_query($con, $query, "DBクエリに失敗しました"); 91 $rowdata = $rs->fetch(); 92 if (! $rowdata) { 93 93 $nextcno = 1 ; 94 94 }else{ 95 $rowdata = pg_fetch_row($rs, 0);96 95 $nextcno = $rowdata[0]; 97 96 $nextcno++ ; … … 124 123 insert into foltia_subtitle (pid ,tid ,stationid , countno ,subtitle , 125 124 startdatetime ,enddatetime ,startoffset , lengthmin , epgaddedby ) 126 values ( '$insertpid','0','$stationid',127 '$nextcno','$subtitle','$startdatetime','$enddatetime','0' ,'$lengthmin' , '$memberid')";128 $rs = m_query($con, $query, "DBクエリに失敗しました");125 values ( ?,'0',?,?,?,?,?,'0',?,?)"; 126 // $rs = m_query($con, $query, "DBクエリに失敗しました"); 127 $rs = sql_query($con, $query, "DBクエリに失敗しました",array($insertpid,$stationid,$nextcno,$subtitle,$startdatetime,$enddatetime,$lengthmin,$memberid)); 129 128 130 129 //addatq.pl