Search Results

0
votes

Database Choice for a C# 2008 front end

I'd have a look at Sql Server Workgroup Edition http://www.microsoft.com/sql/editions/workgroup/ Expres …
0
votes

One to One database relation?

I would suggest that you keep each record type in its own table. Player Logins are one type of record. Inventory is another. They should not share a table as most of the information isn't …
1
vote

What best practices do you use for testing database queries?

We have a blank database set aside for each developer and tester. When the tests are run - each test clears the database and loads the data it is expecting to use. This gives us a known st …
0
votes

Best way to view a table with *lots* of columns?

If you are just after a verification could you not check each field programatically and report that entire row is ok!. Then you need a much simple data grid which lists the rows that are not so go …
5
votes

Populate TreeView from DataBase

Not quite. Trees are usually handled best by not loading everything you can at once. So you need to get the root node (or topic) which has no parentIDs. Then add them to the trees root no …
2
votes

What is the best way to associate a file with a piece of data?

The best solution would be to put the documents in the database. This simplifies all the linking and backingup and restoring issues - But it might not solve the basic 'we just want to point to doc …