The tableadapter tag has no wiki summary.
0
votes
2answers
33 views
MySQL updates from modified datagridview in c#
I have a form that contains a filtered datagridview (that hides entries marked "closed") based on a dataset and tableadapter from a MySQL database. I am stuck on one part that involves the launching ...
0
votes
0answers
12 views
mysql and VB connecting to a database
Can someone tell me if I understand these correctly?
Data Binding/Binding Source
Data Set
Table Adapters
This is my understanding:
data binding is linking the program to an outside data source.
...
0
votes
0answers
69 views
How to extract result returned from tableadapter query that returns multiple values in vb.net
Ok here goes,
I have a tableadapter query that executes the following
SELECT SNAME, SDOB, SCODE AS SBAR
FROM SVALUES
GROUP BY SCODE, SNAME, SDOB
HAVING (SCODE = ?)
And ...
1
vote
0answers
60 views
Unable to update database using table adapter with datarows
I am trying to update a table in my database using a tableadapter that takes DataRows. These are rows created from a session datatable with DataTable.Select().
SaveDetailAdapter.Update(dr) doesn't ...
0
votes
1answer
80 views
how to use table adapter to bind with asp gridview?
i am trying to bind my grid to table adapter data, this is what i do :
DataSourceDepartement dpt = new DataSourceDepartement();
DataSourceDepartementTableAdapters.departementTableAdapter
...
1
vote
0answers
110 views
DataRepeater with Custom User Control and TableAdapter (Windows Forms)
I am developing a windows forms application and i have the following
A Window Form with a DataRepeater Control (Microsoft.VisualBasic.PowerPack)
The Repeater Control has a Custom User Control with a ...
0
votes
1answer
62 views
How to navigate between two different tables in VB.NET (Access database)
In my VB.Net program I need to add the table "order" and "line of order".
If the first order is selected, I can only navigate the line(s) of order that is linked to the first order. I have no_order in ...
0
votes
0answers
101 views
How to update/save database table in VB? Access Database/VisualStudio 2012
I have a problem with Visual Studio and my access database.
I have a DataGridView to see if changes are applied to the database.
I have managed to add and to delete rows from database but when I ...
0
votes
0answers
43 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
1answer
129 views
How can I edit a TableAdapter's stored procedure?
Using Visual Studio 2012 I have created a TableAdapter and a corresponding stored procedure which can be accessed via GetData(). This was done using the graphical query generator. This works fine but ...
0
votes
2answers
178 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
3answers
98 views
TableAdapter Update fails: doesn't allow nulls
I am trying to update a table, using the update method from my tableadapter, but I am getting the fallowing error:
Cannot insert the value NULL into column 'isCorrect', table 'info'; column does ...
0
votes
1answer
424 views
SCOPE_IDENTITY() after TableAdapter Update, using BindingSource
Trying to get the Autoincrement ID of a row after TableAdapter.Update.
The data is Binded so there's no row being added to the datatable as in this case.
Any ideas on how to solve this?
Thank you
0
votes
0answers
124 views
SQL Server CE TableAdapter Delete method don´t delete database row
I have problem trying to delete a row from a SQL Server CE database (.sdf file).
My code:
public int DeleteUserEvent(int rowID)
{
FASK_UserEventsTableAdapter eventsta = null;
try
{
...
0
votes
2answers
86 views
How or where to remove generated SQL from tableadapter code?
I've been developing an app which uses strongly typed datasets and stored procedures. I've just graduated and this was the method that was sold to us as the way to go. I'm starting to have severe ...
0
votes
1answer
289 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
144 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
151 views
c# - SQL CE - TableAdaptor @@IDENTITY
i have the following Insert Statement:
In my table ID is Primary Key...
INSERT INTO Student(Name,Family,Address);
I create other query in TableAdapter called SelectID
SELECT @@IDENTITY;
now back ...
0
votes
1answer
45 views
Update Error in cell
When I edit my DataGridView's cell I want to immediately update my MSSQL database. I added a CellEndEdit' event handler. Also I added autogenerated bindingsource andTableAdapter`.
It works correctly ...
0
votes
1answer
101 views
DataSet and query with IN as List<int>
My problem is that i have DataSet with Tables and i want to return values
'where DocumentType IN (@list)'
, but @list is like :
string.Join(",",DocTypes.List1);
I have tried to use it like
...
0
votes
0answers
192 views
Cant update wpf datagrid through table adapter after creating new Fill method
I have a problem with the table adapter update function used in WPF DataGrid.
The thing is that I could Fill my table adapter with my DataSet table name like this:
...
1
vote
1answer
68 views
C# Have an issue in update method with particuler rows using TableAdaptor
I am trying to make a form which display all the information of a user(firstname, lastname, email..) in textboxes. And then there is a button which the user can edit the fields and submit the update ...
0
votes
1answer
42 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
...
0
votes
0answers
408 views
Sorting data in an ASP.Net GridView based on changing TableAdapter sorting
Is there a better way to do this?
We have many ASP.Net GridViews. This particular one is small but the others have many columns in each.
The DataSources for the GridViews are all strongly typed ...
0
votes
1answer
461 views
Creating a DataView for sorting ASP.Net GridView columns
We have a typed DataSet created by the Visual Studio DataSet designer.
Can you tell me how to create a DataView object from the typed DataSet? We want to change the sorting of it so it can be ...
0
votes
0answers
105 views
error in dataset while adding sql procedure using vb.net
Using vb.net. dataset named as CIS.xsd. while adding procedure to this dataset show warning message from table adapter wizard like 'invalid object name #st1'.here i enclosed my sql procedure. but when ...
0
votes
1answer
244 views
SCOPE_IDENTITY() after TableAdapter Update
I've updated my TableAdapter's advanced options, so it would Refresh the data table.
I'm looking to retrieve the SCOPE_IDENTITY of the new added row, right after I use TableAdapter.Update.
How can ...
0
votes
0answers
93 views
not able to get the name of tableadapter in vb.net
using dataset in my application. add some procedure(oracl) to that particular dataset. but in codebehind am not able to get the name of tableadapter. am also tried it in a new dataset also. am getting ...
0
votes
2answers
341 views
Updating tableadapter throws error Input string was not in a correct format
When I call
TA.Update(row)
I receive the following error, but I have no idea how to debug it. Is there a way to determine which exact field is causing the issue?
Server Error in '/' Application. ...
1
vote
1answer
828 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
163 views
SUM child column of tableadapter
I have a tableadapter (SettlementCurrentTableAdapter) with a relation. parent table is (SettlementCurrent) child table is (Trips).
I need to SUM each row (tripLoadedMiles) in (Trips) and display the ...
0
votes
0answers
267 views
c# error use the new keyword to create an object instance
i have a code:
DataTable dt = new DataTable();
dt = Banqqet_detailsbl.selectallrecordfromBooking_details(booking_id);
DataRow dr = ...
0
votes
2answers
256 views
UpdateAll method related table issue .net
I am trying to use the method updateAll from the table adapter manager. When I try to update any record that is stored in another table as a child the updateAll throws an exception telling me that ...
0
votes
0answers
231 views
Change XSD table adapters initial catalog before ObjectDataSource binds
I have looked hard and long for this answer but can't find exactly what I need.
I have a web application with an XSD file containing some 30 table adapters, on various pages I use the ...
0
votes
1answer
177 views
Failed to convert parameter value from string to guid
I have a tiered application. The datalayer makes a call to the database by using a dataset which contains a tableadapter. In the database table there is a field called ID of type UniqueIdentifier. I ...
0
votes
0answers
199 views
Cascade delete in parent-child using tableadaptermanager.updateall
I have two datagridview, one shows parent records and the other it's child records.
I defined into the dataset the relation and foreign key constraint with cascade update and delete rule and ...
0
votes
0answers
27 views
Oracle Procs with BETWEEN clause won't come over from server explorer to MSDataSetGenerator
I have an Oracle backend (11) and am using .net 3.5 (VS 2008). I've been using the server explorer and MSDatasetgenerator to pull stored procedures over from a package. This drag and drop of the ...
0
votes
1answer
182 views
Dynamically Instantiate a Table Adaper Created with a Dataset Generator
I have a number of stored procedures. I used the .net server explorer and the dataset generator to create table adapter and table pairs.
Now in my code I want to dynamically instantiate these table ...
2
votes
1answer
147 views
Table adapter with visual studio Final Code
I enter values in User Name and Password in two text boxes. When I click submit, I want the table adapter to check the database to see if those are really the values and allow the user to log in.
...
1
vote
2answers
589 views
reset autoincrement when using a data adapter in c#
I'm trying to take an existing Access database file (template.mdb) as a template for a new file.
I want to drop some tables' rows (but keep other tables).
I "access" the table via TableAdapters ...
0
votes
0answers
135 views
Table Adapters and Entity Framework - Architectural Decision
I have the brief of implementing a public Webservices API to an existing software solution.
The new web-services will be consumed by public clients, Windows phone (7&8), Windows 8 & Surface - ...
2
votes
0answers
170 views
Refresh Table Adapter affects cell focus
I'm using the following code to commit cell changes to the database and calculate the value of another cell in the database. While I realize it isn't the norm to store a calculated value, I haven't ...
1
vote
1answer
137 views
Creating a List of items from a binding source
I have a binding source that is connected to a database. The binding source is connected to a data table that has 4 columns. Terms, Definitions, Store ID, and ID. I currently have a filter on Store ID ...
2
votes
1answer
140 views
Decimal passed incorrectly from C# to SQL Server with TableAdapters
Yesterday I noticed an odd behaviour when using TableAdapters, for some reason when passing a decimal < 0.1 it makes it into an integer. For example if I pass 1.0123, I can see 1.0123 in SQL ...
0
votes
0answers
142 views
BindingSource and Grouping
It's possible to apply GROUP BY clause to BindingSource.Filter?
If not (as i think) there are other ways to FILTER DISTINCT elements in a BindingSource without change query or reload data?
0
votes
1answer
83 views
How to check for Null on 2 different datasets and not output null tables
I have a program that auto launches with Windows via scheduler. What it does is runs a query and then emails the results of the query. This all works. We have 10 locations so I will be editing this ...
0
votes
1answer
112 views
How to email multiple queries to multiple users
I have a program that auto launches with Windows via scheduler. What it does is runs a query and then emails the results of the query. This all works. What i'd like to do is take the program to the ...
1
vote
2answers
2k views
Saving Dataset to database
I am trying to save a dataset to a database. I got a dataset from another class, Now changes will be made on the form by a user on a datagridview, then the changed Dataset needs to be saved in the ...
-1
votes
4answers
971 views
3 Tier Architecture c#.
I having problems with my 3 tier architecture. It seems that I could not count the number of players due to implicit conversion from object to Int.
DropDownList
protected void ...
0
votes
2answers
605 views
VB.NET 2008: invalid object name 'dbo.tablename'
I put my database to hosting provider. My desktop application works fine with local connection while quering with the tables and updating them. Application queries well without any issue with the ...

