Reading and writing to a file
Just as a side note, IanG was correct, the speed of the Access database was not an issue, the real issue was my own junk code. I was using foreach loop and had the database items running in the loop,...
View ArticleReading and writing to a file
Thanks for putting it like that. I really appreciate the time you took to help me out.
View ArticleReading and writing to a file
That's a tiny amount of data. I agree that a database would be overkill. (Although I disagree with your reasoning. If you need to perform searches across hundreds of thousands of items, Access will be...
View ArticleReading and writing to a file
IanG, Thanks for the response, I could use an Access DB for this, but I just wanted to get away from them as the OLEDB is a bit slow in my opinion. The stream reader/writer is far quicker, and I am...
View ArticleReading and writing to a file
Obviously StreamReader won't let you write...but although there is a StreamWriter it won't help you. The thing is, what you're asking turns out to be problematic. And it's not due to a limitation in...
View ArticleReading and writing to a file
Hello all, I have a text file that I want to read from, I know I can use the Streamreader class to get the information I want, but writing to the file has me kind of stumped. The file is basically like...
View Article