The tableadapter tag has no wiki summary.
0
votes
1answer
656 views
DataSet raises NoNullAllowedException even if a value is passed!
I'm writing a game server to which many players connect.
I load up the DB into a DataSet(strong typed).
Every time a player logs in, I add a new row to Messages table using a TableAdapter.
code
...
0
votes
3answers
798 views
Table adapter query gives an error that is not reproducable in SQL Server Management Studio
I am maintaining some queries defined in the table adapters designer in Visual Studio used in some reports in a Windows Forms application (.NET 2.0).
When I run the application and execute a ...
1
vote
5answers
4k views
Getting @@IDENTITY from TableAdapter
I am trying to complete a seemingly simple task that has turned into a several hour adventure: Getting @@Identity from TableAdapter.Insert().
Here's my code:
protected void submitBtn_Click(object ...
0
votes
1answer
215 views
Changing CommandText changes Parameters
I'm trying to edit the CommandText for the Insert Command in a TableAdapter in the Designer in vb.net. Whenever I make changes to the CommandText, Visual Studio (2008) automagically changes the ...
0
votes
1answer
669 views
TableAdapter Update fail
I have a VB windows Form project that connects to several DataTables in an Access DB. On my form I have several textboxes, comboboxes and datetimepickers that are bound to those sources. With one ...
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
367 views
What's the best way of rounding numbers in an ASP.NET GridView bounded to a DataTable?
I have a GridView that is bound to a DataTable, which in turn uses a TableAdapter, like so:
ResultTableAdapter tableAdapter = new ResultTableAdapter();
ResultDataTable dataTable= ...
0
votes
1answer
699 views
Update query not working in table adapter
I have a table adapter on which I want to query an update to my database.
UPDATE Polls
SET DateRequest = ?
WHERE (Id = ?)
But it's not working when I try to execute it
...
2
votes
1answer
695 views
Paremeters in TableAdapter not accepted
I'm currently trying to set up my TableAdapters, but it doesn't allow me to use parameters (what makes it quite useless) - When I create a new Query
SELECT users.*
FROM users
WHERE name ...
0
votes
2answers
43 views
Database Changes Rolled back when rebuilding the .SLN (VS2008)
So, folks. Got an interesting occurrence going on here.
I have a windows forms application made in VS2008 which has, up until recently, been connecting to a SQL Server 2008 database. I was able to ...
0
votes
1answer
131 views
Change VS created dataset's source database at runtime
This question and answers discuss the theory as well as methods to achieve the desired result so I don't wish to re-hash those suggestions. I'm trying to make sure there isn't an easy solution in my ...
0
votes
3answers
3k views
How to Avoid Duplicate Key Exception
I am using TableAdapter to insert records in table within a loop.
foreach(....)
{
....
....
teamsTableAdapter.Insert(_teamid, _teamname);
....
}
Where TeamID is the primary key in the table ...
0
votes
1answer
271 views
I insert new parent row and child rowstate changes from Added to unchanged
rowsUpdated is an int32 to count how many rows are updated
rowsToUpdate = dataset.ParentTable.Select("", "", dataviewRowState.Added)
if rowsToUpdate isNot Nothing then
for each row as datarow in ...
1
vote
0answers
96 views
VS.NET 2008 - Stop Giving me a Table Adapter
I'm trying to see if there is a way to stop VS.NET 2008 from doing something which is very annoying to me and our particular standards of coding.
When you create a blank dataset and then drag over ...
1
vote
1answer
1k views
ADO.NET tableadapter add/update/delete
I'm using the table adapter in C# where visual studio generates the code for you.
I have inserts and updates working just fine using the following code.
However when trying to delete using the ...
1
vote
1answer
2k views
How to create refresh statements for TableAdapter objects in Visual Studio?
I am working on developing an ADO.NET data provider and an associated DDEX provider. I am unable to convince the Visual Studio TableAdapater Configuration Wizard to generate SQL statements to refresh ...
1
vote
2answers
1k views
C# TableAdapter.Update() is using UPDATE rather than INSERT
SELECT WO_BreakerRail.ID, indRailType.RailType, indRailType.RailCode, WO_BreakerRail.CreatedPieces, WO_BreakerRail.OutsideSource, WO_BreakerRail.Charged,
...
0
votes
1answer
2k views
bind a WPF datagrid to a datatable
I have used the marvelous example posted at:
http://www.codeproject.com/KB/WPF/WPFDataGridExamples.aspx
to bind a WPF datagrid to a datatable.
The source code below compiles fine; it even runs and ...
1
vote
1answer
2k views
TableAdapter.Update not working
Here is my function:
private void btnSave_Click(object sender, EventArgs e)
{
wO_FlangeMillBundlesTableAdapter.Update(invClerkDataDataSet.WO_FlangeMillBundles);
...
0
votes
2answers
553 views
mysql and .net: when using tableadapters I’m getting MySqlException “insert command denied for user”, otherwise everything is fine
I am using mysql as db for my asp.net application. Here are the facts:
I am using connection string from web.config which has both username and password.
I can do SELECT with tableadapter.
When I am ...
0
votes
1answer
327 views
mysql and .net: when using tableadapters I'm getting MySqlException “insert command denied for user”, otherwise everything is fine
I am using mysql as db for my asp.net application. Here are the facts:
I am using connection string from web.config which has both username and password.
I can do SELECT with tableadapter.
When I am ...
0
votes
2answers
1k views
DataSet.HasChanges is true even immediately after TableAdapter.Update is run
I've got some legacy dataset code which I'm updating. I'm attempting to determine if the dataset has changes to it so I can properly prompt for a save request. However myDataset.HasChanges() always ...
0
votes
1answer
1k views
SQL Query within VS TableAdapter Query Configuration Wizard
I am trying to write an SQL query within Visual Studio TableAdapter Query Wizard
My SQL query is:
DECLARE @SQL varchar(255);
SET @SQL = ' SELECT * FROM dbAddress WHERE 1 = 1'
IF @ApexLine1 = ...
0
votes
2answers
907 views
.NET TableAdapter to DataAdapter
TableAdapter is a wrapper for DataAdapter. It's impossible to use TableAdapters in generic way (bacause they inherit Component class). Is it possible to get the wrapped DataAdapter out of ...
1
vote
2answers
911 views
Remove a Parameter from DetailsView ItemUpdating
Here's the setup
I have a DetailsView whose DataSource is an ObjectDataSource.
The ObjectDataSource has two methods, select and update, that are stored procedures defined in a TableAdapter.
The ...
2
votes
1answer
325 views
Tableadapter doesn't update
i'm trying to update a tableadapter.
This is an my code's example.
DestTableAdapter destTableAdapter = new DestTableAdapter();
MissioniDataSet.DestDataTable destDataTable =
...
1
vote
3answers
2k views
How to check a delete / upadate operation completed successfully, using stored procedure?
Say we have stored procedure(s) performing simple operations
CREATE PROCEDURE [dbo].[AddNewAuthorReturnID]
(
@Author_Name VARCHAR(MAX),
@Author_ID int OUTPUT
)
AS
SET NOCOUNT OFF;
...
1
vote
6answers
30k views
Delete selected row from datagridview and update DB
I have a datagridview and the user will select a row, then click on a Delete button. The row should then delete AND the DB needs to update using tableadapters.
How can I do this? The code is in C#...
...
0
votes
2answers
85 views
LIKE Statement trouble
I am having some issues while using the TableAdapter and the LIKE Statement in VB 2008. I am wanting to search name using partial spellings. When I run the application nothing is returned.
Here is ...
1
vote
1answer
693 views
Inserting Row into an Access 2003 DB using TableAdapter
I'm new to using TableAdapters and I am unsure of what is going on. Essentially, I am trying to export data from one database to another database with a different schema using a generated dataset. ...
0
votes
1answer
1k 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 ...
2
votes
2answers
2k 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
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 = ...
0
votes
1answer
95 views
tableadapter problem between dev and production server
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
1answer
6k 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 ...
2
votes
1answer
543 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 ...
1
vote
4answers
969 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 ...
2
votes
2answers
3k 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
1answer
920 views
tableadapter VB.net 2008 - retrieve identity
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 field ...
3
votes
3answers
3k views
asp.net InsertCommand to return latest insert ID
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 Insert, ...
2
votes
0answers
601 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 ...
2
votes
1answer
1k 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
796 views
How to use an MS Access parameterized stored procedure in ADO.NET?
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 query in ...
2
votes
1answer
3k 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
210 views
Why would a TableAdapter populate a DataSet with “1/1/2000” for an entire timestamp column?
I have a TableAdapter filling a DataSet, and for some reason every select query populates my timestamp column with the value 1/1/2000 for every selected row.
I first verified that original values ...
2
votes
3answers
3k 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 ...
1
vote
1answer
688 views
C# and MS Access database (updating)
I created a Windows Forms application in C#, created a data source in C# from the my MS Access database 'inspro' on the form I coded for the save button:
try
{
this.Validate();
...
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 ...
1
vote
4answers
357 views
Dataset times out while query runs immediately
I am running a query directly, it is trivial in nature:
SELECT * FROM [dbo].[vwUnloadedJobDetailsWithData] WHERE JobId = 36963
When I run this from Management studio the query doesn't even take a ...
0
votes
2answers
582 views
TableAdapter is returning phantom results in ASP.NET
I have a TableAdapter that is fetching rows from a stored procedure. For some reason, when there are no results, the TableAdapter returns an INT with value 0 instead of NULL. The stored procedure has ...