Convert to CSV via command-line with all text-fields quoted

How do I convert a .ODS file into .CSV via command-line and have all text-fields quoted?

I know how to convert via CLI using LibreOffice:

"C:\Program Files (x86)\LibreOffice 4\program\scalc.exe" --headless -convert-to csv:"Text - txt - csv (StarCalc)":59,34,76 -outdir converted MySpreadsheet.ods

or unoconv:

"C:\Program Files (x86)\LibreOffice 4\program\python.exe" ..\..\tools\unoconv\unoconv -f csv -e FilterOptions=59,34,76 -o converted MySpreadsheet.ods

The OpenOffice wiki article on FilterOptions only mentions the first four options and formatting options for each column. The Unoconv Manpage mentions “Text export filter options” as opposed to “CSV export filter options” but I have no idea how to specify them. The text-fields are formatted as text in the .ODS file.

I don’t know what the logic behind this is but the 7th parameter controls the “Quote all text cells” options.

"C:\Program Files (x86)\LibreOffice 4\program\scalc.exe" --headless -convert-to csv:"Text - txt - csv (StarCalc)":59,34,76,,,,true -outdir converted MySpreadsheet.ods