1
vote
1answer
134 views
C# .net Concurrency Problems - SQL Connection then ADO.net changes
I have a c# .net program where I need to first insert data into a table using a sql connection and then adjust the same set of data using ADO.net. I am not sure how to make sure the insert via the …
0
votes
2answers
38 views
C# - SQL Server - ? parameters and Oledb
I am writing a small framework in C# for importing data to SQL Server.
I have noticed that if you try to use the ? placeholder for parameters, they do not work if you use the System.Data.SqlClient …
0
votes
1answer
24 views
What gets disposed when SqlCommand.Dispose is called?
In theory since SqlCommand implements IDisposable a SqlCommand object should always be disposed. I personally wrap a using statement around them. However I see lots of code that never disposes of …
1
vote
2answers
30 views
In what situations is the prepare method of a SqlCommand object useful?
Does any body know that in what situations the prepare method of an ADO.NET SqlCommand Object is useful?
1
vote
4answers
45 views
create three stored procedures (select/update/insert) per table or as needed?
using asp.net, sql server 2008, winserver2003
we have about 10 tables with about 20 fields each...
we have about 30 web forms where each form uses some variation of fields from some/all tables...
…
0
votes
0answers
13 views
Is ADO.Net Data Service Offline (Astoria Offline) dead? Any Plan B?
We are trying to convert out old school client server application into a N-Tier application with synchronization and offline support using all Microsoft technology (we are a total .Net and SQLServer …
3
votes
3answers
2k views
Cannot execute stored procedure with ADO.NET Entity Framework
I've created a simple parameterless stored procedure which I've pasted below. I've imported the stored procedure to my Entity Model and created a Function Import. The function in the model is never …
0
votes
0answers
9 views
Parameterize the schema in a strongly-typed ADO.NET TableAdapter
Hey all,
I'm trying to build a strongly-typed dataset in ADO.Net and am having a little trouble with one aspect of the TableAdapters.
My query looks like
SELECT *
FROM testdict.ModuleVariable
WHERE …
6
votes
9answers
4k views
Using MySQL with Entity Framework
Can't find anything relevant about Entity Framework/MySQL on Google so I'm hoping someone knows about it.
0
votes
2answers
197 views
Import from ADO.NET Data Services into Excel
I'm playing around with ADO.NET Data Services and would like to import the output from a query into a spreadsheet. Although Excel 2007 allows me to import the results of a request from the web page, …
0
votes
3answers
132 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 LINQ, I want to know …
0
votes
1answer
20 views
Resources for learning the ADO.NET Entity Framework CTP 2
Hello all,
So here the ADO team announce CTP 2 of the Entity Framework.
What resources are about to help me learn this?
I've seen this which nicely describes earlier versions but it's the new …
0
votes
0answers
9 views
ObjectQuery(Of T) from a SQL UDF that returns TABLE (Of T)?
Is there a way to create an ObjectQuery from a UDF, Then adding includes etc. to the ObjectQuery?
Or I must execute the query by primitive ADO.NET SqlCommand, cuz then I will have to load the includes …
0
votes
1answer
15 views
Linq to ADO.NET parent/child query help
Hello
I want to use Linq to ADO.NET to fetch all rows that match the criteria below from a DataTable.
Select all rows where "parentId" equals "id" of a row where "parentId" equals null.
Order by …
1
vote
2answers
39 views
How to upload data to database with ADO.NET
Hey all,
I have a web application that has a requirement to take data from an Excel workbook and load it to the database. I am using ADO.NET 2.0 and need to use DataSet/DataTable/DataAdapter/etc. to …
