Tagged Questions
0
votes
0answers
40 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
115 views
Refresh a strongly typed DataSet
I have a strongly typed dataSet that calls some stored procedures.In one case I add some data in the database using the strongly typed data set.The data gets added to the database but for some reason ...
1
vote
3answers
77 views
Getting one element from a strongly typed data set
I just learnead to use a strongly typed dataset along with stored procedures today and things are going very well , except one little problem.I can figure out how to get my data out of a datatable ...
0
votes
1answer
133 views
Accessing stored procedures from typed data set
Hi I am just learning to work with typed DataSets and I can not seem to find a good example on how to work with them with stored procedures.
So far I manage to create the DataSet add the tables and ...
0
votes
1answer
72 views
Why must books teach to use datasets [closed]
Where ever I read I see experts writing to stay away from typed datasets and use the entity framework or similar.
On the other hand almost every ado.net book I read will show first how to use ...
1
vote
1answer
167 views
How do I filter multiple tables in a dataset?
I have a strongly typed dataset that has about a dozen tables, all linked via relationships. Just as an example, some of the major tables are invoice, invoice_lines, invoice_journal, invoice_log, ...
0
votes
0answers
332 views
Insert into Related Table using Typed DataSet
When I try to insert data to Order and OrderDetails using typed dataset, there is an error:
"The INSERT statement conflicted with the FOREIGN KEY constraint "FK_OrderDetail_Order". The conflict ...
0
votes
0answers
19 views
ADO typed row's update cmd has a strange behaviour?
I have a strange behaviour here, that came out of nowhere after some changes in code.
I have the following code:
MyDataSet.workRow workRow = workDataTAble[i];
//here, workRow.field1=1
...
0
votes
0answers
224 views
Filling a strongly typed dataset from another dataset(that came from a web service)
I've made a desktop application which is expected to retrieve data from a local server as well as remote server, although the database is same at both the sides.
I've created strongly typed dataset ...
1
vote
3answers
545 views
Strongly-typed dataset not retrieving return value from stored procedure
I have a strongly-typed dataset that is using DBDirectMethods to insert data into a database using calls to stored procedures. The stored procedures return the primary key of the newly-created record. ...
0
votes
1answer
121 views
An exception is thrown after a row is deleted from a strongly typed DataSet?
I am using .NET 4.0 and SQL Server 2008 R2.
I have three tables:
Companies (PK CompanyID)
Addresses (PK AddressID, FK CompanyID)
ContactPersons (PK ContactPersonID, FK CompanyID)
CompanyID is ...
0
votes
1answer
179 views
Autoincrementing field in typed dataset
I'm using typed dataset and trying to update a table with one autoincrementing column.
The problem is that when I update this table in the following manner
tableAdapter.DeleteAllQuery();//
...
1
vote
1answer
132 views
How to validate a calculated column on an ADO.NET DataTable
According to MS, calculated columns (AKA expression columns) don't raise any DataTable events:
http://msdn.microsoft.com/en-us/library/w9y9a401%28v=vs.80%29.aspx,
This makes it impossible to use ...
2
votes
1answer
203 views
InvalidCastException on identical types? (yes, Context… identical Contexts?)
I have a strongly-typed DataTable on which I'm calling GetChanges:
myApples.CropTable.GetChanges(DataRowState.Deleted)
I want to access the results of this using my strongly-typed CropTable and ...
2
votes
1answer
277 views
ADO.NET DataTable.Merge() method doesn't work as expected
Let say Customer table has Address1 and Address2 columns. After creating typed dataset
with VS 2008 wizard, I wrote the following code:
Dim t1 As MyDataSet.CustomerDataTable = New ...
0
votes
1answer
73 views
Why is dataset designer changing the case of my schema objects?
I have two xsd files with the same exact schema. The first was generated from an SQL connection and the other was generated from a FoxPro OleDb connection by the Dataset Designer. I can't use the ...
2
votes
1answer
2k views
Problem with typed dataset nullable date value
I have a datatatable in a typed dataset with a date column
When I change the NullValue property to return null or empty , vs 2008 wont let me.
it says
The value entered is not valid for the current ...
0
votes
3answers
172 views
Best way to Querying TypedDataSet
I have to done optimization of my code. I am using typedDataset. For querying type dataset what is the best method.
Like: Linq or any thing else..
0
votes
1answer
161 views
Cascading Deletes Do Not Persist to the Database in my Typed Dataset
Typed datasets in ADO.Net are supposed to be able to cascade deletes and updates when a DataRelation is set up between two tables, say a parent and child. However I have not been able to get this to ...
3
votes
4answers
194 views
Architectural design for multi customer project with sligthly different database structure (for each customer)
I'm maintaining an application that was copy-pasted for each new customer (...yeah, I know). If a new customer wanted some new functions which the others didn't need, only his code part was changed. ...
2
votes
1answer
1k views
Retrieve identity value from inserted record's primary key
i cannot retrieve the new identity value from an inserted record(via DataAdapter.Update) in my DataRow.
I'm using a strong typed Dataset as DAL. The table i want to update is joinded with other ...
1
vote
1answer
813 views
Proper way to specify database connection string in a DataSet.xsd
I have a Windows CE Form (NETCF 3.5) application that I've created via Visual Studio 2008 (c#) - (However, the core of my question probably applies to normal Windows application, too).
The ...
0
votes
1answer
375 views
Invalid Cast Exception when filling datatable wth table adaptor
I am using VB.NET 2010 (Visual Basic 2010 Express) on a WPF-based project. I am also using the SQL Server Express built-in to Visual Basic 2010 express.
I have just about finished refining my code ...
0
votes
0answers
531 views
how to map ado.net datatables from multiple result set stored procedure to custom-made classes
I'm looking for an example or clarification on how to map the results of a
stored procedure to custom made classes based on the following:
The stored procedure returns multiple result sets.
...
1
vote
1answer
32 views
how to know Datatable is already subscribed?
How to know that DataTable is already subscribed to OnRowChanged or OnColumnChanged events ?
I am facing a issue with many notifications in my app ? so I wanted to put a check and want to subscribe ...
3
votes
2answers
1k views
Strongly typed datasets and schema changes
I have a project which uses strongly typed datasets.
Let's assume I want to change the database schema of the database used by this application.
I have a table named Country and I want to add a new ...
0
votes
1answer
173 views
Concat Columns with NULL-values
I want to concat two Columns in the TableAdapter Wizard of the VS Dataset-Designer.
The problem is that one column has NULL-Values and hence the concatination results in NULL regardless of the value ...
2
votes
5answers
2k views
.NET - Is there a way to programmatically fill all tables in a strongly-typed dataset?
I have a SQL Server database for which I have created a strongly-typed DataSet (using the DataSet Designer in Visual Studio 2008), so all the adapters and select commands and whatnot were created for ...
2
votes
4answers
1k views
How do I get the primary key of the row I just inserted into a typed dataset in .net?
I have some VB.net code that inserts data into my SQL database using a typed dataset as follows:
dim usersTa As New authorizedUsersTableAdapters.Authorized_UsersTableAdapter
usersTa.Connection = ...
6
votes
3answers
1k views
Question about how to use strong typed dataset in N-tier application for .NET
I need some expert advice on strong typed data sets in ADO.NET that are generated by the Visual Studio. Here are the details. Thank you in advance.
I want to write a N-tier application where ...
2
votes
2answers
633 views
Get the details of the current row when using a typed dataset/binding source in a winforms application
I want to delete the current row in a grid only if a specific value exists in a column.
How can I get the details for the current row?
1
vote
2answers
531 views
Iterating strongly typed DataSets
I basically need to be able to iterate through tables to extract, transform and load data into typed datasets. Based on the table name from a list I need to construct the ...
1
vote
1answer
507 views
VS2008 DataSet Wizard doesn't match tables for updating
first question ever on this site.
I've been having a real stubborn problem using Visual Studio 2008 and I'm hoping someone has figured this out before.
I have 2 libraries and 1 project that use ...
1
vote
1answer
401 views
typed dataset for populating custom objects?
I'm about to develop databse server app; I have decided not to use typed dataset/dataset, except in the DAL, (so I'm not asking the question whether to use dataset or custom objects).
Populating my ...
1
vote
1answer
887 views
TableAdapter of Strongly Typed dataset won't let me generate the Update method
I have a view from my database being represented as a TableAdapter, but I cannot get it to generate the Update methods. The, "Create methods to send updates directly to 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 = ...
4
votes
2answers
823 views
How do we solve all this “Conversion from type DBNull to type String is not valid” nastiness?
In our applications, I can't think of many cases where we care about null string fields. We just want them to show as empty strings in most situations.
So when using the built in ADO.NET dataset / ...
5
votes
3answers
4k views
Inserting Rows in Relationship using a Strongly Typed DataSet
I'm using ADO.NET with a strongly typed dataset in C# (.NET 3.5). I want to insert a new row to two tables which are related in an 1:n relation.
The table Attachments holds the primary key part of ...
6
votes
3answers
2k views
Set CommandTimeout used in Strongly Typed DataSet TableAdapter?
Preamble:
So, over the past 5 years or so various applications and tools have been written here at my company. Unfortunately many of the people who developed these applications used strongly typed ...
-1
votes
2answers
247 views
0
votes
1answer
271 views
Effcient updates of ado.net typed dataset row
Does Ado.net check if the following update is required?
ADDRESS table with a TOWN column, for example.
Retrieve a ADDRESS row that has a TOWN value of "Leeds"
In update code ADDRESS.TOWN gets set ...
0
votes
1answer
724 views
How can I limit DataSet.WriteXML output to typed columns?
I'm trying to store a lightly filtered copy of a database for offline reference, using ADO.NET DataSets. There are some columns I need not to take with me. So far, it looks like my options are:
Put ...
2
votes
4answers
3k views
Typed dataset not recognized when moved to another project
I moved a typed dataset from one project to an ASP Web Application project. I put the typed dataset into one of the existing directories as it was in the App_Code directory of the previous site but ...
1
vote
2answers
2k views
Adding dummy Column to strongly typed dataset
I am writing a site that uses strongly typed datasets.
The DBA who created the table made gave a column a value that represents a negative. The column is 'Do_Not_Estimate_Flag' where the column can ...

