Tagged Questions
2
votes
2answers
314 views
Data representation with C# and WPF
I'm developing an application handling DB parts. I retrieve the data from the DB with stored procedures and prepared statements. Now I want to display the data in the GUI.
What is the current ...
4
votes
4answers
243 views
Designing a Database Application with OOP
I often develop SQL database applications using Linq, and my methodology is to build model classes to represent each table, and each table that needs inserting or updating gets a Save() method (which ...
3
votes
6answers
3k views
Database GUI Programming - .Net vs MS Access [closed]
MS Access gets pooped on a lot because A) many newbies use it B) people use it as a database backend which is not a good idea.
I'd like to see some reasonable discussion on why you might choose ...
0
votes
3answers
262 views
Software design approach for large relational database
I am working on a personal side project that will utilize a complex and large relational database. During the design of the database I had some co-workers give advice to how I should approach my ...
3
votes
3answers
1k views
Is the ADO.net Entity Framework appropriate when all you do is insert records in bulk?
My department develops software to migrate databases for our customers from their old CRM software to ours. In this process we could be inserting up do millions of rows, processed one at a time as we ...
0
votes
1answer
281 views
Caching Business Objects in MVC application
I figured this was more of an architectural question, so I chose to post it here rather than Stack Overflow.
So I'm building an MVC web application and have just finished writing the code that wraps ...
5
votes
4answers
3k views
Business Objects within a Data Access Layer
So I've been creating a data access layer via TDD and have approached somewhat of a concern. I'd rather not start down the wrong path, so I figured I'd ask you guys to see if my thoughts were in line ...
1
vote
5answers
3k views
Best Language for the job? Database | C++, .NET, Java [closed]
Ok, quick overview. I'm pretty brand new to software design. I have experience reading and editing/customizing PHP things for online scripts/software; Such as CMS, Wordpress, some forum solutions. I'm ...
3
votes
3answers
496 views
Unit/Integration Testing my DAL
So I've done some research on this but I couldn't quite come to a conclusion, so I figured I'd ask you guys to see if I could get some other opinions.
All of my database access is currently done ...
15
votes
9answers
1k views
Constraints in a relational databases - Why not remove them completely?
Is there any reason to build constraints between tables (inside SQLserver) nowadays? If so, when? Most applications in my area are built on object principles and tables are joined on demand. Demand ...