Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

ADO.NET TableAdapter parameters

I have a query that I wish to run through an ASP.NET TableAdapter that contains an 'IN' clause which is to receive it's values through a parameter. My question is, how do I specify this parameter? I ...
4
votes
3answers
260 views

Managing DB Changes in a C# Project

I have a C# app (in VisualStudio 2010) that used SqlServer 2005 accessed through TableAdapters in C#. I haven't discovered a good way to manage DB changes. For example, in my next release I have a ...
3
votes
3answers
2k 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, ...
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 ...
3
votes
1answer
2k views

How to use Npgsql with TableAdapter in C#

I have PostgresQL database, and I develop interface application using C# and Npgsql to connect to the database, how can I assign the Npgsql connection to TableAdapter? Thanks,
2
votes
1answer
43 views

Quick way to insert the same record as copy using Tableadapter

I have a datatable with a bunch of fields, and it's filled data by tableadapter. Usually, records that need to be inserted are a little bit different (only id). I don't want user to retypes everything ...
2
votes
1answer
53 views

How to serialize .NET Table Adapter

I need to serialize a .NET table adapter. Serializing a data adapter and the data set is not a problem but i seem unable to serialize the table adapter. Looking at the type its typically specific to ...
2
votes
1answer
346 views

C# bound textbox will not update using tableadapter update

I am having problems getting a dataset to update changes to a database. I start by filling a dataset using a FillBy query that I created on a table adapter. "SELECT * FROM tblTest WHERE testID = ...
2
votes
2answers
318 views

tableadapter.update doesn't work?

I have a problem that drives me crazy... I have a local database (.sdf) on my PC en a database on the internet (MySQL), both with same structure. I first load data from the internet in the dataset via ...
2
votes
2answers
229 views

Dataset: How to capture the primary key value returned by SELECT SCOPE_IDENTITY()?

I'm using a dataset. I have a table Adapter called PackageTableAdapter, which contains a method called InsertPackage. INSERT INTO [dbo].[Packages] ([UserID], [Name]) VALUES (@UserID, @Name) //Return ...
2
votes
2answers
176 views

Database isn't updating

I am trying to write some data into a .MDF database that has only one table, and it's not updating after I execute this part of the code: DatabaseDataSet.MyTableRow newRow; newRow = ...
2
votes
5answers
167 views

ASP.net c# database connectivity getting into a mess

I'm just starting development on a new website and am trying to do it correctly, that is, with a DAL and not with queries in code which I had before. I understand the principles of it all, but I am ...
2
votes
4answers
361 views

Incorrect ID is returned after insert using TableAdapter

When I perform an insert with TableAdapter: int pid = this.purchaseTableAdapter.Insert(supplierid, datetime, "", totalprice, amountpaid); It returns the incorrect id 1 while it should return ...
2
votes
2answers
314 views

TableAdapter wizard does not have connection string from Settings in pick list

C# VS 2010 .net v4.0 I add a DataSet to my project (Class Library) and when I try to add a TableAdapter the connection string that I have added to Settings is not available to select. I have ...
2
votes
2answers
542 views

How to get rid of strongly typed tableadapters and datatables

In our organization we are maintaining a VS 2005 website that relies heavily on strongly typed tableadapters and datatables. Needless to say that it is a maintainability nightmare for many reasons: ...
2
votes
1answer
237 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 ...
2
votes
1answer
175 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 = ...
2
votes
2answers
895 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 ...
2
votes
0answers
485 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
662 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 ...
2
votes
1answer
2k 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: ...
2
votes
3answers
2k 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 ...
2
votes
4answers
4k views

Control TableAdapter Command Timeout Globally

I have a DataSet with a QueriesTableAdapter. In order to control the SqlCommand.CommandTimeout I've added a partial class called QueriesTableAdapter with a public method called ChangeTimeout. partial ...
2
votes
4answers
4k views

What happened to my TableAdapter's Update and Delete commands?

I am fighting a recalcitrant VS2008 DataSet designer, it seems. I have been trying to do what seems to be a simple 2-table dataset solution, where one table is simply the textual meaning for an ...
2
votes
4answers
6k 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
5k 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 ...
1
vote
2answers
56 views

C# TableAdapter and DataSet update with multiple table

I'm new in C# and I need some help. I just want to update row in Session table by code below. dbDataSet db = new dbDataSet(); SessionTableAdapter sessionTableAdapter = new ...
1
vote
1answer
73 views

Generating a paramatarized query with variable number of parameters

I have some designer generated code that I am using to query a dataset. The designer generated it because I have a Form with a ReportViewer which created it's own BindingSouce andTableAdapter. I used ...
1
vote
1answer
147 views

Failed to enable constraints. When using a data table adapter

I'm getting Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints. for the following query in my table adapter. select f.id, f.name, ...
1
vote
0answers
93 views

TableAdapter not updating in-memory values in DataTable

I have a TableAdapter with a designer-built .Update() command. The TableAdapter also has a command which will update just one of the fields in one of the records. This command is .AddBankName. ...
1
vote
1answer
99 views

Using await with a TableAdapter

I recently began using the Async CTP and while I have found it quite useful with Self Coded classes and the like, I have run into a bit of a snag when trying to implement it with Generated Code, ...
1
vote
2answers
153 views

Declaring a Variable TableAdapter on a Form

This is hopefully a fairly straightforward question. I am building a generic search form in my application. This will allow the user to search for various records throughout the application. The ...
1
vote
2answers
160 views

Saving data from a listbox bounded to a database in c#

I have a dataset bounded to a listbox in a Windows CE application using SQL Server CE. There is only one table in the dataset named "Codigos" with two fields: an id and a "code" field. I inserted ...
1
vote
1answer
119 views

Not update auto increment column in DataRow [WPF, C#, .NET]

Hi, sorry for my English. I have the following problem: I have a database (Microsoft SQL Server Compact) with two tables. The first table [table1] contains column id <- AutoIncrement = true The ...
1
vote
3answers
1k views

C# - using TableAdapter to return a single value from stored procedure returns null

I do not understand but my stored procedure which I added to table adapter only returns null value. It is supposed to return a simple integer value. In the preview I had with data set desinger, I ...
1
vote
3answers
487 views

ASP.net simple delete query, pass in string value

DELETE FROM tblArtworkApprovalUsers WHERE (userID NOT IN (@UserIDList)) AND (approvalID = (SELECT ID FROM tblArtworkApprovals ...
1
vote
1answer
108 views

Loss of data after updating .Net TableAdapter

I had a program working with a database I created using SQL Server Compact Edition. Everything was updating and showing fine. Then I decided to change the Fill SQL statement to order by a field. After ...
1
vote
1answer
229 views

Verify a TableAdapter connection string opens successfully?

What is a better way than try/catch wrapping to verify that the connection on a TableAdapter opened or will open successfully? public class MyItemParser { private myTableAdapter fa; public ...
1
vote
1answer
329 views

c# (3.5) use TableAdapters to read/write null DateTime values to a database

I am connecting to a database using VS2008 DataSets. One of the Tables within the database contains a DateTime Column that allows nulls (i.e. Type: DateTime?) MSDN Datasets categorically states: ...
1
vote
0answers
339 views

C# Table Adapters Changing the backend database from SQLCE to SQLite

Background The software currently supports a SQL Server 2008 database or SQL CE (depending on server or standalone modes). I'm a C++ programmer thrown into the deep end of C# TableAdapters. ...
1
vote
1answer
331 views

How to erase all records from a database when using LINQ and tableadapter?

I am trying to load data from Excel file to DataGridView in my Form. First I load all data from excel sheet into dataset then put all that data in database using C# LINQ and then I just set the ...
1
vote
1answer
69 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
584 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
849 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, ...
1
vote
1answer
1k views

TableAdapter.Update not working

Here is my function: private void btnSave_Click(object sender, EventArgs e) { wO_FlangeMillBundlesTableAdapter.Update(invClerkDataDataSet.WO_FlangeMillBundles); ...
1
vote
2answers
525 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 ...
1
vote
3answers
7k 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#... ...
1
vote
1answer
314 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. ...

1 2 3 4