Tagged Questions
The dataset-designer tag has no wiki summary.
3
votes
1answer
277 views
Tools to organize Dataset designer?
Does anybody know of good tools/plugins to organize the dataset designer in Visual Studio 2008? Right now it's a big jumble of TableAdapters without relationship views - it would be very cool if there ...
2
votes
1answer
245 views
Dataset Designer Performance Question
Can anyone tell me if there are any performance overheads to using the dataset designer as opposed to setting up the data connection using code and manually retrieving the data?
2
votes
4answers
2k views
Visual Studio DataSet Designer Refresh Tables
In visual studio datasource designer is there any way to refresh a table and its relations/foreign key constraints while keeping the custom queries?
The way I am doing it at the moment is removing ...
1
vote
0answers
75 views
A TableRow referenced trought a DataRelation always returns null
Using the DataSet designer in Visual Studio 2010, I've added some tables from a MySql DB. VS10 automatically picks up and adds the relations between the tables, e.g., the relation ...
1
vote
2answers
201 views
Having trouble dealing with completely legit DBNULL. Using DataSets DataTables being passed as the Model data Views. ASP.NET MVC2
I'm loving MVC but unfortunately all the tutorials, demos and ALL resources use Entity Framework to generate ViewData and most use LINQ to SQL instead of DataSets.
I'm reusing existing business logic ...
1
vote
1answer
225 views
WPF DataSet/Query Designer VS2010
Is there any good Dataset designer control similar to "Crystal Reports Database Expert", which I can provide in my application. All I need to do show tables and Let the users establish relationships ...
1
vote
2answers
355 views
visual studio DataSet designer with stored-procedures ? what is this icon
What does this icon mean is Visual studio, visual Data Set designer.
I have several stored procedures.
can you help me understand,
why the one on top of the list has a
small "check mark"
why I ...
1
vote
2answers
492 views
.NET - using a custom type in a dataset
I have a .NET web app built using VS 2008. I included a strongly typed dataset that uses custom types in the table columns. I did this by manually editing the XSD file behind the dataset. This was all ...
0
votes
1answer
24 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 ...
0
votes
1answer
79 views
OleDbCommand.Prepare method requires parameters of type '14' have an explicitly set Precision and Scale
Using Visual Studio 2010 and I'm encountering an error when attempting to use the DataSet designer. The error is as stated in the subject, "OleDbCommand.Prepare method requires parameters of type ...
0
votes
1answer
86 views
Can DataSet designer in VS2010 support optional parameters?
I like a lot of the built in features the built-in DataSet designer provides in VS2010 and do not want to have to change to something entirely different if at all possible. The problem is, to have ...
0
votes
2answers
99 views
Why do typed DataSet methods return unexpected results
I use typed DataSets for accessing data, configuring them via DataSet Designer (the general idea is explained in this tutorial).
For each table a GetData() method is automatically created at first. ...
0
votes
2answers
91 views
Extend DataSet Class Not Working
I've created a dataset using the dataset designer. One of my tables is called Users and so there is a class called UsersDataTable. In this class are some properties, namely Connection. So I created a ...
0
votes
1answer
827 views
Custom tool error Failed to generate code
Why this error is appearing? I was just setting some default values in a dataset designer... its second time that this is appearing...
"Custom tool error Failed to generate code. Exception of type ...
0
votes
2answers
389 views
Visual Studio DataSet Designer Saving is VERY slow
workig with Visual Studio 2008 DataSet Designer has become a pain in the a*s. I have a quite big dataset (>50 Tables) and saving chages takes A LOT of time (I am talking here about 10-15 minutes!). It ...
0
votes
1answer
765 views
how to get data from a datagridview and insert into database?
i ve a datagrid and wen a button s clicked i want the values from the datadrid to the database..
thanx in advance
0
votes
2answers
177 views
DataSet Editor is missing from the “Open With” dialog in VS2005
I'm using Visual Studio 2005. I normally use the DataSet Editor to design datasets. However, this option is no longer available in the Open With dialog. Visual Studio now defaults to designing ...
0
votes
0answers
177 views
Suggestions for cleaning up dataset designer layout?
Is there a tool/addin for VS to clean up the design view of a dataset by automatically repositioning the tableadapters, etc based on relationships?
Thanks
0
votes
1answer
504 views
ParentRelations don't work in generated DataSets?
I created two tables:
Publisher
PK, PublisherId, int, not null, indentity +1
PublisherName, varchar(50), not null
Product
PK, ProductId, int, not null, identity +1
ProductName, varchar(50), ...