Subversion-Projekte lars-tiefland.ci

Revision

Revision 68 | Revision 2049 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 68 Revision 1257
Zeile 978... Zeile 978...
978
	 * @param	array	an array of bind data
978
	 * @param	array	an array of bind data
979
	 * @return	string
979
	 * @return	string
980
	 */
980
	 */
981
	public function compile_binds($sql, $binds)
981
	public function compile_binds($sql, $binds)
982
	{
982
	{
983
		if (empty($binds) OR empty($this->bind_marker) OR strpos($sql, $this->bind_marker) === FALSE)
983
		if (empty($this->bind_marker) OR strpos($sql, $this->bind_marker) === FALSE)
984
		{
984
		{
985
			return $sql;
985
			return $sql;
986
		}
986
		}
987
		elseif ( ! is_array($binds))
987
		elseif ( ! is_array($binds))
988
		{
988
		{