Tagged Questions

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
3answers
900 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 ...
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
3answers
130 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?
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
614 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
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 ...
0
votes
1answer
52 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
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
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 ...
0
votes
1answer
908 views

System.ComponentModel.Component in Visual Studio 2008

I'm maintaining a .Net 2.0 application using Visual Studio 2008. When the application was built, it was originally in Visual Studio 2003 and made use of the System.ComponentModel.Component class for ...