ファイル名がパラメータとして渡されるストアドプロシージャ内のテーブルにデータをロードしています。このため は、ロードデータinfileを使用してエラーの原因を認識できません
select @load_config:= concat('load data local infile ',config_file,' into table config fields terminated by \',\' lines terminated by \n');
prepare stm from @load_config;
iは
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '' at line 1
iが失われていると私がどこかわからない正直に言うと、エラー、私はエラーを得ているため
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '/mnt/appln/mysql/dvdbuser/config.csv into table config fields terminated by ',' ' at line 1 i tried this as well
select @load_config:= concat('load data local infile \'',config_file,'\' into table config fields terminated by \',\' lines terminated by \n');
prepare stm from @load_config;
を取得しています私はうんざりしています
はい、私はその問題に遭遇しました、私はパラメータとしてファイルを渡したいと思いました。 – avz2611