Hi! What's the best way that I can get a large amount of text data (nearly 2 mb) from a database (probably MSSQL, very slight chance of MySQL) and then write it to a txt file? I could do it by querying the data into a recordset (about 5,000 rows) and then iterate through and write it to file with fwrite, but I’m concerned about the large amount of data needing to be processed and thus that this will be too slow.
Is there a better way to go about it, or would PHP not be the best thing to perform such a task? Thanks! -- Mike
Is there a better way to go about it, or would PHP not be the best thing to perform such a task? Thanks! -- Mike