Tagged Questions
The dataaccess tag has no wiki summary.
12
votes
16answers
3k views
ORM vs Handcoded Data Access Layer
I'm a bit scared to ask this question as it may start a religous war so I want to be really clear on what I'm looking for. I'm looking for a reason(s) why you would or have jumped one way or the other ...
6
votes
6answers
350 views
Is LinqToSQL the same as Linq?
I was just reading about Linq to SQL being discontinued. For a while I put off learning Linq at all. Even on asp.net, when I last checked, their data access tutorials were using table adapters and ...
5
votes
8answers
140 views
Should I Learn “Raw” ADO.Net Before Learning Linq or Entity Framework?
When I first started learning how to do Classic ASP, VBscript, and HTML someone told me to go out and purchase Dreamweaver because "it would make life easy" so I did that and it got me my first ...
4
votes
4answers
124 views
ORMs for WebServices DataSources?
There seems to be lots of great Object Relational Mappers out there - several of which I have used myself (LLBLGen being one I like a lot). Does anyone know of any .Net tools out there to help build a ...
4
votes
2answers
2k views
(DevForce vs OpenAccess vs LLBLGen) vs Entity Framework 4 & CTP4
Putting free open source ORM/DataAccess/Modeling tools (like NHibernate) aside, what do some similar commercial tools offer beyond what the current Entity Framework 4 (plus CTP4) offers. Commercial ...
4
votes
8answers
451 views
Where to put restrictions on entities when separating Business layer from Data Layer
I am attempting to create the the business and data layers for my big ASP.NET MVC application. As this is the first time for me attempting a project of this scale I am reading some books and trying ...
4
votes
3answers
896 views
Oracle.Dataaccess error ORA-06502: PL/SQL: numeric or value error: character string buffer too small
I am invoking a stored proc from .NET app. The proc returns an out parameter of type Varchar2. To fet
ch the out parameter I am passing the parameter to the command as OracleParameter:
parm12 = new ...
4
votes
8answers
3k views
C# static database class?
I have a Database class which contanins the follwing methods:
public bool ExecuteUDIQuery(string query) // UDI = Update Delete Insert
public bool ExecuteSelectQuery(string query)
public bool ...
3
votes
2answers
88 views
How to bundle oracle data access dll?
I use Oracle.DataAccess.dll for Oracle Version 10.2. with .NET. I give the compiled application to the customer and it doesn't work for him because I am guessing ODP.NET is not on his machine.
I ...
3
votes
1answer
420 views
Android data access design patterns: Content provider vs repository
I wonder what folks use as a common data access pattern on Android? Content providers? Repositories? DAOs?
Thanks a lot!
3
votes
3answers
129 views
When should I use a SQLTransaction
What is the appropriate time to use a SQLTransaction?
I use them for all of my INSERT, UPDATE and DELETE statements.
Is this the correct usage or am I doing a bit of overkill?
3
votes
1answer
920 views
Oracle.DataAccess.Dll x64 support
My oracle.dataaccess.dll is not supported on x64 machines.
I've looked for it everywhere - but all I could find is the x86 version.
Anyone knows where can I get it from?
3
votes
2answers
227 views
What should I be using with ASP.Net MVC, NHibernate, LINQ, EF?
Hi I posted a question a little earlier and I had some replies that I should look at some different technologies. Which of the above (or other feel free to mention) is the most popular or best ...
2
votes
1answer
35 views
Passing user information down to data access
I'm working on a desktop application that has generated code for database access and uses static objects for user identification.
Now we need to expose some of the logic by webservice and we are ...
2
votes
1answer
104 views
How should we use ASP.NET Data Access Classes (Converting from ColdFusion)
We're converting from ColdFusion to ASP.NET 4.0 and we just don't know which route to take with setting up our classes.
In college I was taught to break everything up into separate Data Access ...
2
votes
1answer
349 views
Sharing connection and transaction in a Data Access Layer
I'm building a Data Access Layer for my asp.net application.
I would like to be able to share connection between different classes in order to manage transaction, but I don't know how to do that.
...
2
votes
3answers
904 views
Can I have an Optional OUTPUT parameter in a SQL Stored Procudure? (MS SQL Server 2008)
I have a stored procedure that has a bunch of input and output parameters because it is Inserting values to multiple tables. In some cases the stored proc only inserts to a single table (depending on ...
2
votes
1answer
105 views
Usage / handling of non relational datasources in .NET applications
Which .NET (data / middel-tier) technologies / framworks can / should be be used, if the datasource isn't a classical relational database, but a service or a remote function call or whatever ? Are ...
2
votes
1answer
611 views
Error when connecting to AS400 (ISeries)
I'm trying to connect to a AS400 server using the .net classes.
I have added a reference to IBM.Data.DB.iSeries and I use the following code:
var conn = new ...
1
vote
0answers
310 views
Translating PersistenceException to DataAccessException in Spring with EclipseLinkJpaDialect
Hallo.
I have the same issue explained here
The main difference is that I use EclipseLink as JpaProvider.
So I configured my entityManagerFactory as below:
<bean id="entityManagerFactoryCont0" ...
1
vote
3answers
267 views
Reading parts of large files from drive
I'm working with large files in C# (can be up to 20%-40% of available memory) and I will only need small parts of the files to be loaded into memory at a time (like 1-2% of the file). I was thinking ...
1
vote
3answers
100 views
Modernising a 'Hand Rolled' Data Access Library
There's this web app, which relies on a sort of data access library (simple data objects and associated objects to perform CRUD operations on them) which is generated directly from the database.
So ...
1
vote
1answer
174 views
How can i handle connections to different databases inside a single transaction scope
I'm trying to access data from two different databases inside a transactionscope.
But while executing any query on the second database , i get "The operation is not valid for the state of the ...
1
vote
1answer
102 views
Oracle and asp.net [closed]
What client should be used to access Oracle database (specifically invoking the stored procedures) from ASP.net code? I am specifically referring to the industry standard. What tips/tricks/issues have ...
1
vote
2answers
1k views
Creating base class for Entities in Entity Framework
I would like to create a base class that is somewhat generic for all of my entities. The class would have methods like Save(), Delete(), GetByID() and some other basic functionality and properties. I ...
1
vote
1answer
388 views
SqlBulkCopy with SqlHelper class
I've installed DataAccessApplicationBlock.msi and I got the Microsoft.ApplicationBlocks.Data.dll file into my bin folder. I found every other sqlhelper methods except ExecuteBulkCopy.
How do I add ...
1
vote
2answers
362 views
Implement storage of data between calls? (C# - WPF)
I have an ALPHA application which allows you grab an obfuscated font from and XPS file and store the .odttf file for use in Silverlight. The application "works" as in it does what it says on the tin, ...
1
vote
1answer
1k views
Multiple SQlCommand.ExecuteReader calls or do it once with datareader.NextResult()?
I'm using a SqlDataReader to populate an entity in a Winform app. The entity class has several foreign key attributes in the database that I want to setup as properties in the entity class. Each ...
1
vote
5answers
936 views
Most Efficient Way To Get A Row Of Data From DB In ASP.NET
I'm writing a method to return an 'asset' row from the database. It contains strings, ints and a byte array (this could be an image/movie/document).
Now for most row access I use the following ...
1
vote
1answer
794 views
Using NHibernate for SQL query generation
NHibernate provides us with ORM capabilities. Part of NHibernate generates queries based on mappings and HQL (or ICriteria). I'm wondering if it is possible to use NHibernate for generating queries ...
0
votes
1answer
51 views
Unable to modify data on i-Series DB2 from .NET
I am having an application in .NET that uses Entity Framework 4. I am using the DB2/400 as my application backend. I am able to make queries and read successfully from the database.
However on any ...
0
votes
1answer
376 views
How to correctly deploy Oracle.DataAccess.dll with ASP.NET app
We had some x64 / x86 trouble when we first deployed the Oracle.DataAccess.dll with our app on different servers with 64/32 bit Windows. Now that we figured out how we can get the app to reference the ...
0
votes
1answer
425 views
InvalidOperationException when try to ExecuteReader() with Oracle Data Access ODP.NET 11.2
It's the first time I HAVE to work with Oracle, and as we all hate to work with foreign stuff while you are working with a specific model some years, although this is our job and we have to make it.
...
0
votes
3answers
176 views
.NET Data Access
What is the best way to learn data access in .net? The Entity Framework seems to be the new "it" thing, but what other options do I have?
Thanks,
Robert
0
votes
1answer
34 views
Changing the CreatedBy convention in Subsonic (3x)
I'm working against a database that wasn't designed by me and in all the tables there is a CreatedBy field that is an int. Now when I generate against this db i get all kinds of errors because ...
0
votes
4answers
312 views
Best way to insert values multiple times from data layer to stored procedure?
Hi
I have DAL Layer, from where invoking a stored procedure to insert values into the table.
E.g.:-
CREATE PROCEDURE [dbo].[DataInsert]
@DataName nvarchar(64)
AS
BEGIN
INSERT INTO
...
0
votes
0answers
39 views
Sql Database Access from LOB Application
Good day folks
These days it is very difficult to keep track of all the available new ways to CRUD SQL Databases. There are many possibilities and i just don't know which i should choose.
To list a ...
0
votes
1answer
558 views
Thread was being aborted In WebService and ASPX page
I'm having the Thread was being aborted exception in this simple code, running on IIS 6 when I run a long query.
Thread was being aborted.
StackTrace:
at ...
0
votes
2answers
134 views
Where to define webservices as asynchronous?
I'm working on a iOS project and I'm asking myself a question for a couple of days.
My problem is simple: I have webservice calls which are synchronous. But I would like to do asynchronous calls. But ...
0
votes
1answer
77 views
Should Validation and Data Correction logic be done in business or data access layer?
So I have this general question of where should I have certain logic for example -
var data=GetItems();
if(data==null)
//return some defaults
else
return values
//second case..
if(id<=0)
...
0
votes
4answers
386 views
Efficient way to select default value in t-sql when no results are found
OK, this is a pretty simple problem, but I'm curious: what is the best approach in terms of efficiency and style?
I often need to select data in MS SQL, but am looking for a single result. If there ...
0
votes
2answers
180 views
what is the difference between data access layer and data access object?
I am new to this concepts data access layer and data access objects.
I wants to the difference between the data access layer and data access object.Please guide me.
0
votes
2answers
64 views
WPF:How to Tell my DataLayer which DataContext to use?
I have a solution where i have 3 WPF projects under it(Project UI-A, Project UI-B and Project named CommonLibrary(Data Layer).I have a user registration form in the Project UI-A where i will capture ...
0
votes
2answers
160 views
Data Access using ASP.NET, what is the best?
I have been asking my self this question from the time i started workin in the software development field,
What is the best way to access data?
Which gives the best performance?
Which is the best for ...
0
votes
7answers
299 views
Is there a framework for data access in PHP?
I'm a .net developer by trade but I'm looking to expand to PHP. I really like what I've seen PHP can do. However I have been somewhat spoiled with data access in .net (such as LINQ) and how easy it ...
0
votes
2answers
299 views
How to insert an n:m-relationship with technical primary keys generated by a sequence?
Let's say I have two tables with several fields and in every table there is a primary key which is a technical id generated by a database sequence:
table1 table2
------------- ...
0
votes
6answers
3k views
ASP.net DAL DatasSet and Table Adapter not in namespace - Northwind Tutorial
I've been attempting to walk through the "Creating a Data Access Layer" tutorial found http://www.asp.net/learn/data-access/tutorial-01-cs.aspx
I create the DB connection, create the typed dataset ...
0
votes
3answers
251 views
SQL Compact allow only one WCF Client
I write a little Chat Application. To save some infos like Username and Password I store the Data in an SQL-Compact 3.5 SP1 Database.
Everything working fine, but If another (the same .exe on the ...
0
votes
5answers
237 views
ORM vs parametrized queries if my only concern is speed of data access
I work in an ASP.net/ SQL Server development environment. If my only concern is speed should I go with parametrized queries or should I use an ORM such as nHibernate or LINQ?
0
votes
2answers
115 views
Server control/data access best practice?
Is it better to access data from within the web parent app and pass the necessary data to the control and back via properties, or pass a reference or url pointer (of webservice) to control and let it ...