To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=76577
------- Additional comments from [EMAIL PROTECTED] Mon Apr 23 13:38:15 +0000 2007 ------- Well, I probably missed the point. However, IF you only want to have a pseudo-csv output (with that additional text), that is quite easy to obtain. 1. export everything you want as usual (as a csv text file with strings enclosed by "'") 2. install awk/gawk (on Unix already available, on Windows, go to http://www.sourceforge.net, search for the project Gnuwin32 -> it is free) 3. run the following gawk script 3.1. write this text into a new text file, e.g. "my.gawk.script.txt" { tmp = "insert into languages ('639-1','639-2T','639-2B','639-3','Name')" tmp = tmp " values (" tmp = tmp $0 ");" print tmp > "my.new.modified.csv" } 3.2. open the console window 3.3. type into the console: gawk -f"my.gawk.script.txt" "my.original.csv" 4. "my.new.modified.csv" will be the new, modified csv file That's it. --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
