Questions tagged [msdatasetgenerator]

DataSet generator for Visual Studio. In VS the DataSet designer creates a special XML Schema file that is converted into a C# typed DataSet using MSDataSetGenerator

10 questions
1
vote
0 answers

MySQL and Typed Dataset Designer slow

This question concerns the use of Connector\Net, MySQL, and the visual studio integration of the typed data set designer. As a beginner I have almost entirely default settings, and am using InnoDB for tables. It appears that on certain tables the…
1
vote
1 answer

C# Creating dataset from xsd containing digital signature

Visual Studios 2005, .NET 2.0 I'm working on a messaging service that sends and receives xml messages based on a 3rd party schema file I can't modify. (I've verified the schema as valid and generated a sample xml message using Altova's XMLSpy.) The…
Equixor
  • 259
  • 4
  • 13
1
vote
1 answer

Unable to modify DataSet in designer - can't seem to locate connection string

I have a DataSet I have been working with in an application that I have been building and modifying largely through the designer interface. I have had zero problems since the last change I made, and the application still runs and accesses / modifies…
user8061994
1
vote
1 answer

What generates DataSet.designer.vb files

I have continually run into problems trying to repair code from another developer, and one method I opted to go with was manually changing the generated dataset.designer.vb file to include overloaded database CRUD methods... After some searching,…
William Tolliver
  • 305
  • 1
  • 2
  • 16
0
votes
2 answers

VS 2008 - SQL CE 3.5 database, Dataset Error - MSDataSetGenerator not generate designer.cs code

I have problem with generating designer.cs code from datatable in VS 2008. I open SQL CE 3.5 database in server explorer and drag database table into designer and I get this error message: Custom tool error: Failed to generate code. Object…
0
votes
1 answer

MSDataSetGenerator using ExecuteScalar() instead of ExecuteNonQuery()

I'm using a strongly-typed dataset (MSDataSetGenerator run on an XSD) to do some of the DB access in a project I'm working on, and I've hit upon a bit of a problem. As I'm using Identity columns as the primary key of my tables I want to return the…
Ed James
  • 10,385
  • 16
  • 71
  • 103
0
votes
0 answers

FindBy Not autogenerated by Custom Tool

I have a Users table with the following column names: Username,Password,EmployeeID, UserType,PasswordExpires,PasswordValidUntil,SecurityQuestion,SecurityAnswer,ActiveUser I have included the data source and dataset in the project.…
Gideon Mwangi
  • 141
  • 1
  • 3
0
votes
1 answer

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 adapters based on the user selecting a choice from…
agezna
  • 133
  • 1
  • 3
  • 9
-4
votes
1 answer

How can I start writing a program in python where it reads an excel file with few records and generate more record for testing purpose

I have got a file with 5 rows and multiple columns and that when read by the program it should generate 100 records for example which can then be loaded into database. Format can be excel or csv