1
JoomlaでSQL文字列をまとめようとしています - > MS SQL Serverインスタンスに接続しようとしましたが、以下の構文があります。私はecho $query;
を使用して画面上の文字列を表示しようとしましたが、クエリは画面に表示されません。Joomlaのクエリ接続文字列
JDatabase
を使用して文字列を組み合わせる正しい構文は何ですか?
$query->select('select empfirstname, emplastname, empaddress, empcity, empstate');
$query->from($db->quoteName('[HiringInfo]'));
$query->where("hiredate IS NOT NULL");
$dropdownlistDates = $db->quoteName('hiredate');
if (isset($sd) && isset($ed))
{
$query->where("$dropdownlistDates >= " . $db->quote($sd), 'AND');
$query->where("$dropdownlistDates <= " . $db->quote($ed));
}
elseif (isset($datecriteria))
{
if ($datecriteria != 15
&& $datecriteria != 30
&& $datecriteria != 45)
{
return null;
}
$min_date = DateAdd(day, $datecriteria * -1, getdate());
$query->where("$dropdownlistDates >= " . $db->quote($min_date), 'AND');
$query->where("$dropdownlistDates <= " . $db->quote(getdate()));
}
これはmssql用です。質問が更新されます。 – BellHopByDayAmetuerCoderByNigh
OK、私は自分の答えを編集する – Rinos