我是一个MySQL新手,完成了我的webapp的核心代码.代码导入CSV文件(本地),由FileMaker生成并清理,然后保留.
鉴于这将很快就会投入生产(并且可能是500mb以下的数据库),我很想知道是否有更好的错误检查/捕获,我可以做到可能防止问题在路上或被提醒我的服务器设置.我已经阅读了有关临时日志等的内容,我的MysqL管理还没有达到目前的效果.
最基本的代码是:
$m = MysqL_connect('localhost','mytable','mypassword');
$db = 'mydb';
MysqL_select_db($db) or die("Import Error - Couldn't select database: " . MysqL_error());
$sql = 'load data local infile "inventory.csv"
into table ibl_account_details_temp fields terminated by ","
optionally enclosed by "\""
lines terminated by "\r"
(store_id,SKU,account,item_number,brand,description,size,category,price,qty,fees)
';
echo MysqL_query($sql) or die(myqsl_error());
最佳答案