Storing SQL Tables for use in visual studio

Posted by Raven Dreamer on Stack Overflow See other posts from Stack Overflow or by Raven Dreamer
Published on 2010-06-14T16:29:30Z Indexed on 2010/06/14 16:32 UTC
Read the original article Hit count: 109

Filed under:
|
|

Greetings.

I'm trying to create a windows form application that manipulates data from several tables stored on a SQL server.

1) What's the best way to store the data locally, while the application is running? I had a previous program that only modified one table, and that was set up to use a datagridview. However, as I don't necessarily want to view all the tables, I am looking for another way to store the data retrieved by the SELECT * FROM ... query.

2) Is it better to load the tables, make changes within the C# application, and then update the modified tables at the end, or simply perform all operations on the database, remotely (retrieving the tables each time they are needed)?

Thank you.

© Stack Overflow or respective owner

Related posts about c#

Related posts about visual-studio-2008