0
votes
1answer
13 views
What is the right way to call an oracle stored function from ado.net and get the result?
I've got a vb.net codebase using ado to connect to an oracle database. We have lots of stored procedures that we call, some with multiple out parameters. However, I now need to cal …
1
vote
2answers
53 views
List<object[]> using more memory than DataTable?
Guys,
I've always believed that DataTable would consume more memory than a generic List. I am testing loading a DataTable and loading a List from a SQL Server query. In this case, …
0
votes
1answer
17 views
Concurrency violation updating a SQL database with a dataadapter
I'm having some trouble updating changes I made to a datatable via a dataadapter. I am getting "Concurrency violation: the UpdateCommand affected 0 of 10 rows"
'Get data
Dim Docs_ …
1
vote
1answer
13 views
Reading Excel file w/ADO.net - no data (or tables)
This is my first attempt to read an Excel 2007 file via ADO.net, and I must be missing something b/c when I try to run the query, I get an exception. When I started looking, it's …
2
votes
3answers
27 views
LINQ to SQL, ExecuteQuery, etc
This might all be a bit subjective:
Our organization has made a strong attempt to adopt LINQ to SQL as our primary data access method and for the most part this works well. (Let’s …
0
votes
3answers
34 views
Using SqlDataAdapter in an ASP.NET page
I'm writing an ASP.NET 2.0 page in VS2008. In my Page_Load method I have the following:
DataTable table = new DataTable();
SqlDataAdapter adapter = new SqlDataAdapter();
using ( …
0
votes
1answer
16 views
ADO.net Modeling Question
I have built my database design and diagram. Now i want to build a ADO.net model of that design. Now my question is that, should i build a model of the the whole design?(Since the …
0
votes
0answers
17 views
LINQ To Rest missing functions like Count() and First(). How do I add those to my ADO.NET Data Service?
I have an ADO.NET data service based off of a LINQ-To-SQL class. I can query this ADO.NET service using LINQ to Rest queries which build simple rest statements. But if I want to us …
0
votes
2answers
83 views
SubSonic, and Microsoft stopping support for LINQ.
Hello, I am a front end developer working on a small social network. Currently, we are using SubSonic and it has satisfied all of our needs. Since Microsft has stopped supporting L …
0
votes
2answers
30 views
Using ThreadPool threads with long running ADO.NET queries. Is this scalable?
We are currently enhancing an ASP.NET app that performs quotes on a number of products.
At present the existing quote engine is basically a big stored procedure (2-3 secs per call …
0
votes
2answers
52 views
SqlParamater updating values in a loop - side effects
I have a stored proc that takes one integer parameter.
I am calling this in a loop (I would rather use an In but Stored proc is outwith my control).
So I have one SqlParameter ob …
2
votes
5answers
77 views
How to get a set of rows from an array of id’s ?
In C#, I have an array of integers, that represent the primary keys of rows in a Table in SQL Server. I need to select all these rows from SQL Server by executing a single Select c …
0
votes
1answer
23 views
Difference between ADO.NET 1.0 and 3.5 using RowFilter and strings?
I have recently been tasked with upgrading an application from .net 1.1 to 3.5 and came across a RowFilter on a DataView that had a different behavior between the two versions.
H …
0
votes
4answers
89 views
SQL - Is there a better way of passing a list of keys, for use in a where clause, into a Stored Procedure?
Here's the scenario; I have a list of CustomerIds (1, 2, 3) that have relating OrderIds. I have one Stored Procedure Delete_OrdersByCustomerIds, which deletes all the orders that a …
3
votes
2answers
33 views
Comparison of 3rd Party Oracle .NET Providers
I'm in the process of cleaning up an Oracle database application. In this application, performance and ease of access are paramount concerns. It has to get out of your way and let …
