0
votes
3answers
43 views
Database architecture change from local to distributed
Our company has a product which relies on local database to work (it allows more client to connect to same database and share data between them).
DBMS: Microsoft SQL Server 2008 …
1
vote
3answers
35 views
Where should I be creating the entity objects?
I have an entity class and an entity DAO class.
Should it be the responsibility of the DAO class to create instances of the entity class, or should there be an entity creator/man …
1
vote
1answer
119 views
How do I reference the Sqlite db file in the App_Data folder for my ASP.NET Web Application?
I'm currently storing my sqlite db file in the App_Data folder as per ASP.NET best pattern and practices.
Currently I'm using the following in the webconfig:
<connectionStri …
0
votes
3answers
536 views
Why is Visual Studio’s table adapter query not returning the same data as the stored procedure it represents?
I'm using a table adapter in Visual Studio to make a query to a stored procedure in my SQL Server 2005 database. When I make the call via my website application it returns nothing …
0
votes
1answer
40 views
How RIA Services can help me while creating data access and logic layers?
in this answer he said that i can use RIA services while creating my 3 tiers solution, how it can help me and how it can save me time, because when i checked it on msdn i found tha …
2
votes
2answers
175 views
whats the recommended Data access layer design pattern if i will apply ado entity frame work later?
I am creating a website and using Linq to SQl as a data access layer, and i am willing to make the website can work on both linq to sql and ado entity framework, without changing m …
0
votes
1answer
95 views
Are there any gotchas or good reasons not to use autosproc for stored procedure calls?
I've implemented a data access layer that populates generic entities from a datareader using a variation of the third monkey approach (http://www.codeproject.com/KB/database/Dynami …
1
vote
1answer
106 views
Look-up tables with Linq-to-Sql
Hi all,
I'm working on a car dealer website at the moment, and I've been working on a 'Vehicle' model in my database. I've been making extensive use of lookup tables with FK relat …
1
vote
1answer
108 views
Architecture question: client REST API’s caching solution
I'm implementing a high traffic client web application that uses a lot of REST API's for its data access layer from the cloud database. I said client because it implements REST and …
6
votes
8answers
357 views
How to write unit tests for database calls
I'm near the beginning of a new project and (gasp!) for the first time ever I'm trying to include unit tests in a project of mine.
I'm having trouble devising some of the unit tes …
0
votes
5answers
149 views
Datareader or Dataset in Winform with long trips to database?
I've got a Winform app that will be used in the US and China. The SQL Server 2005 database is in the US, so the data access is going to be slower for the people in China. I'm decid …
4
votes
5answers
635 views
How to improve data access layer select method Pattern
Lately I find myself writing data access layer select methods where the code all takes this general form:
public static DataTable GetSomeData( ... arguments)
{
string sql = " …
0
votes
1answer
176 views
How to update only one row in a DataGridView?
I have a DataGridView that's populated from a DataTableAdatper, as in this tutorial.
I guess since it's an ODBC MySQL connection, it's not generating DBDirectMethods for me.
My q …
2
votes
6answers
133 views
Switching data access strategy far into a project?
In a project we have implemented the data access layer (DAL)
with a visual designer that auto-generates a lot of code
(in our case: strong-typed DataSets and DataSetTableAdapters …
0
votes
2answers
118 views
What section should I place my SqlDataReader code in?
Hi,
I am fairly new to c# and am trying to write a n-tiered web application. To make sure that I put the logic and code in the right place I just have a question about where to pu …
