Tagged Questions
0
votes
0answers
38 views
Why is the tableadapter namespace different from that of the dataset?
I know this may sound a little basic but I was wondering why the tableadapter namespace different from that of the dataset?
Was it something I did when I generated it?
0
votes
2answers
177 views
Populating multiple tables in typed dataset
I'll try to simplify my problem as much, as possible.
Feel free to comment and correct my English. Hope you can understand me.
My main question is:
Is there any simple and "automated" way, to fill ...
0
votes
1answer
285 views
iteration through TableAdapter of a strongly typed DataSet
We would like to use a For-Next loop to iterate through a TableAdapter row by row and extract the value of a column in each row from a strongly typed DataSet.
The TableAdapter was created in the ...
0
votes
0answers
142 views
Iterating (looping) through a TableAdapter
We are looking to iterate through a TableAdapter and pull out the values of each row in the TableAdapter from a particular column called ClassName. We will add additional columns later.
We have ...
0
votes
1answer
41 views
Listing out all the names of ASP.Net methods and mappings for a DataSet created in DataSet Designer
When a typed DataSet is created using the Visual Studio DataSet Designer, several methods, etc. are generated.
Example:
DataSetStudentsAndParentsTableAdapters.DataTableTableAdapterStudentsAndParents
...
1
vote
1answer
826 views
Updating ASP.Net / VB.Net database with strongly typed DataSet
We would like to update data in a SQL Server 2012 database with a value obtained from
changing a value on an ASP.Net DetailsView. I Would would like to update the database using
a strongly typed ...
0
votes
1answer
402 views
Is there any reason to dispose of a table adapter?
In many cases when working with different types of data objects it's important to dispose of them to make sure that they don't leave a database connection open. However, table adapters don't seem ...
0
votes
2answers
125 views
Returning value from delete statement in TableAdapters
Good Afternoon,
Does any body know if we can return values from a delete statement when using it with the TableAdapters (types dataset).
The delete statement uses a stored procedure which returns ...
0
votes
1answer
158 views
Typed Dataset ConstraintException on insert
Basically I have a table that contains hierarchical data.
So I have an id column, and a rollup column which points to the id column for each child's parent.
This table is loaded from the database ...
0
votes
2answers
500 views
Parameterize the schema in a strongly-typed ADO.NET TableAdapter
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 Module = ...
3
votes
5answers
1k views
Strongly typed dataset wont fill, table mappings problem? c#.net 2.0
You've been excellent with my other questions previously - so here I am again, in need of some help!
I've got a query which joins three tables and a strongly typed dataset which has the columns ...
0
votes
3answers
1k views
TableAdapter to return ONLY selected columns? (VS2008)
(VS2008) I'm trying to configure a TableAdapter in a Typed DataSet to return only a certain subset of columns from the main schema of the table on which it is based, but it always returns the entire ...
2
votes
4answers
8k views
How do you filter a TableAdapter's FillBy based on two tables?
I'm using VS2008 C# Express and the Northwind database on a Windows Form application.
I used drag and drop to set up the master details binding (I used the Orders and Order Details) for the two ...
2
votes
6answers
6k views
Last inserted record ID problems using typed DataSet and DataGridView
I'm using following for a simple database application:
SQL Server Compact Edition .sdf file as database, with int primary key IDs.
Typed DataSet and BindingSource as data access layer
DataGridView ...
2
votes
4answers
1k views
Calling Oracle SP with TableAdapter very slow
I have a query that runs super fast when executed in the sql editor (oracle): 1ms.
The same query (as stored procedure) when executed by a DataSet-TableAdapter takes 2 seconds. I'm just retrieving ...
