欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PDO 通过 ODBC 批量插入 MSSQL 数据(dataAll)

程序员文章站 2022-05-20 13:06:45
...
ThinkPHP 3.2.* 对 ODBC 支持不是很好。所以,这里写了一个方法来实现 dataAll 操作——随笔即兴所写。。。
function dataAll($arr, $table){
if($arr){
foreach($arr as $m => $var){
$varKeyList = array_keys($var);
$varCount = count($varKeyList);

for($i = 0; $i $insertList .= $varKeyList[$i];
$insertValue .= "'".$var[$varKeyList[$i]]."'";

if($i $insertList .= ",";
$insertValue .= ",";
}
}

// 生成 SQL 语句
$sql = "insert ".$table."(".$insertList.") values(".$insertValue.")";


$Model = new \Think\Model();
$Model->query(UTF8toGB($sql));

$insertList = $insertValue = "";
}
}
}


// 编码转换(我的MSSQL 支持得是 GB2312)
function UTF8toGB($source){
return iconv('UTF-8', 'gb2312//IGNORE', $source);
}
其中 $arr 是数组,$table 是表。

AD:真正免费,域名+虚机+企业邮箱=0元