0
votes
1answer
44 views
C# Display Join Query in DataGridView at designTime using TableAdapter, etc.
I have a DataGridView
I also have some tableAdapters (groupTableAdapter, userTableAdapter) generated from sqlserver database.
I have created a JOIN query in userTableAdapter that shows users with …
1
vote
2answers
50 views
Smarter ways to use TableAdapter with base-class, interface or partial class.
C# ADO.Net TableAdapter objects does not implement and interface nor a base class (other than Component).
Anyone used TableAdapter in a Template like (GoF-) pattern?
Update:
I would like to solve …
0
votes
1answer
403 views
C# Update and Delete row table using tableAdapter, mdb access, dataGridView
I have a DataGridView, which loads data from mdb Access table
The grid only shows data (is readonly). I have a button for inserting new row, and now have to make two more buttons, one for update and …
0
votes
1answer
27 views
tableadapter problem between dev and production server
Hi all,
I have a problem when trying to create a new sproc for a tableadapter. On my development server, Visual Studio is using my windows login; domain name/ username. When I try and create the same …
0
votes
2answers
137 views
Using DataGridView to Update Multiple Tables
On a VB.NET 2008 form I have a DataGridView, BindingSource and TableAdapter.
The BindingSource DataSource is a dataset.
In the dataset I have a Fill command that joins three tables and this is …
0
votes
0answers
15 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 …
0
votes
3answers
73 views
Limit rows returned using TableAdapter (typed DataSets)
Does anyone know the best way to limit the number of rows returned when using typed TableAdapters? Options appear to be:
Pass "top X" as a parameter (can't do this until we're on SQLS2008
Issue a …
0
votes
1answer
75 views
Transaction handling with TransactionScope
I am implementing Transaction using TransactionScope with the help this MSDN article
http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx
I just want to confirm that is …
2
votes
3answers
411 views
Generic DataTable & TableAdaptor updates with Reflection (C#)
I have several strongly typed datasets throughout my application. Writing methods to update the data is getting tedious as each has several tables. I want to create one generic function that I can …
0
votes
1answer
46 views
tableadapter VB.net 2008 - retrieve identity
Hello,
I am inserting a record to a MSSQL table using a tableadapter using something like:
Dim da_mytable As New t_mytableTableAdapter
da_mytable.Insert(xxxx,xxxx,xxxx)
The SQL table has an identity …
1
vote
1answer
97 views
Multiple Connection Types for one Designer Generated TableAdapter
I have a Windows Forms application with a DataSet (.xsd) that is currently set to connect to a Sql Ce database. Compact Edition is being used so the users can use this application in the field without …
1
vote
2answers
200 views
asp.net InsertCommand to return latest insert ID
Dear all,
I'm unable to retrieve the latest inserted id from my SQL Server 2000 db using a typed dataset in asp.NET
I have created a tableadapter and I ticked the "Refresh datatable" and "Generate …
1
vote
1answer
225 views
TableAdapter.update method, where did it go?
I made a ListBox with your standard smart-control thing, and have it connected to a database. It gets the data I've pre-generated in there via query builder, so when I do this:
…
1
vote
1answer
123 views
How do you override a TableAdapter method on a Table in a DataSet?
I currently have a single DataSet declared which contains 3 tables. For sake of this example we will call them User, Question and Answer.
On each of these I have a TableAdapter with the various …
0
votes
1answer
89 views
How to use an MS Access parameterized stored procedure in ADO.NET?
Hi,
In MS Access I have a query wich takes two parameters and I'd like to get the result of this query in a ADO.NET DataSet with a TableAdapter.
In Visual Studio Express 2008 I can't select the …
