以下は、データベースのタブ区切りのバックアップを作成するために使用するコードです。
mysqldump --user=**** --fields-enclosed-by=\" --lines-terminated-by="\n" --password=**** --host=localhost --tab=/path/to/folder ****
私が仕事に就けないのはこれです:
--lines-terminated-by="\n"
現在、MySQL データベースに TEXT カラムがある場合、次のように出力されます。
"1" "A test post" "This is an example of text on multiple lines.
\
As you can see this is how it places it in the txt file.
\
Blah blah blah"
"2" "Another post" "More text....."
これが私が達成しようとしているものです
"1" "A test post" "This is an example of text on multiple lines.\nAs you can see this is how it places it in the txt file.\nBlah blah blah"
"2" "Another post" "More text....."
ドキュメントによると、--lines-terminated-by=...
を使用して出力する場合はサポートされてい--tab
ます。しかし、私はそれを機能させることができないようです。