A better method might be to use a database; this will allow multiple threads to read and write from the same data without the locking problems you could well hit when trying to do the same thing using a text file.
Or, if you only need to pass data within the same thread context then just use variables. Or, pre-process the data before the test. All of these are better ideas compared to trying to read and write to a CSV file using multiple threads all running at the same time. ----- http://www.http503.com/ -- View this message in context: http://jmeter.512774.n5.nabble.com/How-to-query-the-database-and-save-the-results-to-a-csv-files-tp4997493p4997527.html Sent from the JMeter - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
