本文整理汇总了PHP中FC_SQL::connect方法的典型用法代码示例。如果您正苦于以下问题:PHP FC_SQL::connect方法的具体用法?PHP FC_SQL::connect怎么用?PHP FC_SQL::connect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FC_SQL
的用法示例。
在下文中一共展示了FC_SQL::connect方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: parse_sql_file
function parse_sql_file($filename)
{
// do not escape the file while reading it
set_magic_quotes_runtime(0);
$fcz = new FC_SQL();
$fcz->connect();
if (file_exists($filename)) {
$fp = fopen($filename, "r");
while ($buffer = fgets($fp, 4096)) {
$dres = null;
$res = null;
if (strchr($buffer, '#') && eregi("\"#[0-9a-z]{6}\"", $buffer)) {
// html color code, typically in inserted html
$sql .= $buffer;
} else {
if (ereg("(^[ \t]*[#;/-]+)", $buffer, $res) || ereg("^\n", $buffer)) {
// comment line, skip it
// oracle has lines with a single leading /, skip them
continue;
} elseif (ereg("([^#]+);[\t ]*[-]{0,2}.*", $buffer, $res)) {
// ; terminated sql line
// chop off double dash comments
$sql .= $res[1];
// echo "second: $sql<br>br>\n";
if (ereg(" end[ \t]*\$", $res[1])) {
// wierd hack for oracle triggers/procedures
$sql .= ';';
}
$fcz->query($sql);
unset($sql);
} elseif (ereg("(^[^#;]+)[\t ]*[-]{0,2}[^;]*", $buffer, $res)) {
// unterminated sql line
// chop off double dash comments
$sql .= $res[1];
// echo "first: $sql<br><br>\n";
} else {
// echo "third: $buffer<br><br>\n";
}
}
}
fclose($fp);
}
}