1
vote
0answers
101 views

XSD DataSet — using connection string from another project at design-time as well as run-time

We have a VS2010 solution that includes a web app (the startup project) and a class library for data access. The connection string is stored in the web app in a connectionString.config, which is ...
2
votes
2answers
172 views

Untyped to strongly typed datatable

I tried to make some experiment today. I have an application that uses untyped datatables as the model entities. They are all made like: Imports System.Data Imports System.Runtime.Serialization ...
0
votes
1answer
124 views

Intellisense states a parameter for a strongly typed DataSet query is a Decimal when it should be a String

We have this query for a strongly typed DataSet which as created in the Visual Studio DataSet Designer: SELECT ID, PaymentAmount, PaymentDate, WhatWasPaymentFor FROM Payments WHERE ParentID = ...
1
vote
1answer
294 views

Adding data to typed datasets programatically

Why I get a "there is no row at position 0" exception: DSGeneral dg = new DSGeneral(); // I create 1 table DSGeneral.GeneralDataTable t = new DSGeneral.GeneralDataTable(); dg.Tables.Add(t); // The ...
0
votes
0answers
58 views

Deployment Implications of Strongly-typed datasets in asp.net web app with sql data sources

I'm just about to embark on my first real ASP.NET app. It's an intranet app and will connect to a some internally-created DB's and some vendor-supplied DB's (that change way too frequently). 99% of ...
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
1answer
203 views

DataView from strongly typed DataSet

We have a strongly typed DataSet created by using the DataSet designer in Visual Studio. Can you show us the needed coding to create a DataView from this DataSet? This will be used in an ASP.Net ...
1
vote
2answers
692 views

Populating an ASP.Net Drop Down List with DataSet data from DataSet created with DataSet designer

We have an ASP.Net / VB.Net web form containing a drop down list in the markup of the aspx file. There is also a DataSet created with the DataSet designer. We would like to populate the drop down ...
1
vote
1answer
830 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
120 views

Value of type <DataTable> can not be converted to <database.table name>

We are developing an ASP.Net web application with a SQL Server database and would like to populate an ASP.Net label control with the total number of students who are enrolled at the school whenever ...
0
votes
3answers
310 views

Return a single row from a Strongly Typed Dataset

In my C# ASP.Net project I am using a xsd dataset to link to my database. I want to create a function return a single row from the strongly typed datatable but I'm running into a little difficulty ...
1
vote
1answer
106 views

CAN strongly typed DataSet work with SQL Server 2000

I've written a Strongly Typed DataSet dll with SQL Server 2005. And I've been used name parameters in DataSet Queries. Can I only set the connectionstring point to a SQL Server 2000 for this dll ...
0
votes
1answer
27 views

Webservice is hiding original class names

I have a DataLayer project with typed dataset. I have another project called SiteWebServices which contains only webservices. I have another web application project which is normal website. This ...
0
votes
0answers
160 views

ASP Bind to partial row property

So I've basically extended my dataset's data row CaseSearchRow, using a partial class, to include additional properties I would like to bind to in my asp page: Partial Class dsCaseSearch Partial ...
0
votes
1answer
254 views

How to change foreign Key restraint on Dataset with Table Adapter

I have a Dataset that has 3 TablesAdapters linked together (both the relationships and foreign-keys came over from the DB design). I'm trying now to to bind the TableAdapter with the foreign keys on ...
0
votes
2answers
125 views

Returning value from delete statement in TableAdapters

Good Afternoon, Does any body know if we can return values from a delete statement when using it with the TableAdapters (types dataset). The delete statement uses a stored procedure which returns ...
-1
votes
1answer
169 views

How to insert data into two typed datasets without violating foreign key constraints?

Should I just use two different inserts starting with the parent or is there a better way?
0
votes
1answer
514 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
4answers
293 views

i have a problem implementing the mvp pattern in c# and asp.net

i've created a forum system in MVP pattern but i'm not sure if i implemented it in a right way. so here is what i ended up with: i've created a database which has three tables: forums, threads, ...
1
vote
1answer
216 views

Problem with Inheritance and NullValue of a Strongly Typed DataSet

What is the simplest/cleanest/easiest/best way to handle Null value of a Strongly Typed DataSet in the following case : A base class has a Nullable value that is set through it's constructor The ...
0
votes
2answers
276 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
1answer
963 views

Crystal Reports and strongly typed datasets yields empty report

I am converting an ASP.Net app from VS 2003 to VS 2005 as a starting point. The app uses Crystal Reports and binds using ADO.Net to a strongly typed dataset (XSD). I had to change some of Crystal ...
2
votes
1answer
200 views

What's the difference between the methods when we create typed dataset?

HI When we create typed dataset in .Net, we can choose 2 methods. One is Fill a DataTable and another is Return a DataTable. What's the difference between those two? Can anybody give me some good ...
0
votes
1answer
139 views

Typed DataSet row creation doubt

I've created a DataSet with 2 Data Tables exported from a DataBase with 2 related tables: TableA (idTableA, name, idTableB) TableB (idTableB) Now what I want to do is to create a Data Row of the ...
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
1k views

storing a database connection string into my.settings in a .net DLL data layer

Hy everybody I've always used this approach while implementing data layer DLL for web application: 1) put datasets into the dll project 2) use a helper class with a method like this: public shared ...
2
votes
0answers
463 views

Typed DataSet + WCF. Service is receiving empty DataTable

I am using Typed DataSet and WCF Service. When I call Update method on WCF proxy method by adding new row in DataTable, I get DataTable with one row in Service method. This is working as expected. ...
1
vote
1answer
502 views

programmatically change table names in .net strong typed dataset

hi I've developed an application using strong-typed dataset with .net framework 3.5. is there a way to change the source table for a tableadapter programmatically? thnx
1
vote
1answer
141 views

What is Northwind.EmployeesRow

I am doing a tutorial where you use a templatefield in the gridview control to call a function. I don't understand the code for the function. What is the object Northwind.EmployeesRow? This is the ...
2
votes
1answer
527 views

Switched from inproc to SQL Server gives me SQL timeouts (no connection max pool size, typed datasets)

Here is my situation: I have a web and database server (SQL Server 2005) in a LAN. The webserver(iis6) has several application pools and sites run fine with asp.net session inproc. both servers run ...
1
vote
1answer
350 views

Updating a query in a dataset

Here is my table in the dataset: SELECT tag_work_field.* FROM tag_work_field I created this query in typed dataset: UPDATE `contacts`.`tag_work_field` SET `work_Field_name` = @work_Field_name ...
0
votes
2answers
86 views

Where are the code gen templates for .xsd datasets?

Do they even exist? We have a website with a massive DAL using strongly typed datasets. I think it would be great if I had a way to inject some tracing calls before and after each of the database ...
1
vote
3answers
1k views

Typed DataSets in WebApplication Projects

I am converting an older C# Website Project into a Web Application Project so that we can better manage it in our source control system. I have run into a problem. The Website Project used ...
0
votes
4answers
900 views

Extract data from SQL Server database

I've connected to database, using data set .xsr now I wan't to extract all rows in my table. Here is my table structure : Lastname Address zipcode city country email So here is one example of table ...
2
votes
2answers
898 views

Define a typed dataset dynamically?

I am trying to create an instance of a typed dataset dynamically in my code at runtime. I have the type available to me, but when I try to do this: object obj = ...
0
votes
1answer
223 views

using strongly typed datasets with textboxes on web forms

I would like to use a strongly typed dataset with textboxes on a web form. How can i do this? Cheers Mick
0
votes
1answer
635 views

Should I distribute the Dataset XSD files when I deploy as website?

VS 2003 .NET 1.1 I know when I build a website into a DLL I do not have to distribute the cs files. When my project includes strongly typed datasets built off an XSD file, should I also distribute ...
1
vote
1answer
10k views

C# Reflection: Getting the fields of a DataRow from a Typed DataSet

I am currently building a method that takes an object that is of type DataRow from a typed DataSet, and then returning a string in JSON format of the fields in the DataRow (for use in a Web Service). ...
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 ...