|
我将建好的数据库用phpmyadmin到处为sql文件以后希望能方便的初始化网站
简单的说就是怎样才能导入sql文件中的脚本到CI中执行呢?
PHP复制代码
$this->load->helper('file_helper');
$sql = read_file ('application/sql/lf.sql');
if($sql == FALSE) {
echo get_filenames ('');
die ('file failed to read');
}
//echo $sql;
//$this->db->query($sql);
$segment = explode(";",trim($sql));
$con = mysql_connect('localhost','root','root') or die('cannot connect to database');
mysql_query($sql) or die('cannot query sql');
复制代码
这是我现在的代码 每次都是cannot query sql
还想请教是否可以直接用CI的db直接执行呢
十分感谢
|
|