Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

7
votes
6answers
804 views

Nullable types in strongly-typed datatables/datasets - workarounds?

Strongly-typed DataTables support "nullable" field types, except that the designer will not allow you change the setting to "allow nulls" for any value type fields. (ie: String types allow nullable, ...
6
votes
1answer
2k views

Best Practice Using C# XSD typed-datasets In Enterprise Applications

I'm trying to understand what is the best practice using XSD tables generated from the Database scheme that I currently use. 1) Do you think the XSD information should be located as part of the ...
5
votes
3answers
741 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 ...
4
votes
2answers
559 views

Transactions in Typed DataSets

Have a typed dataset with several related tables, and relations defined between those tables. As I process a datafeed, I'm adding, modifying, and removing records, then calling update on each table. ...
4
votes
2answers
462 views

Create entire DataSet from existing stored procedure

I have stored procedures (they accept parameters) that return multiple result sets and I'd like to have this saved in a typed dataSet. The question is: can I have Visual studio 2010 generate the ...
4
votes
2answers
150 views

Can someone please clarify the key difference between Entity Framework and Typed Datasets?

I am comparing the EF and typed datasets for their usefulness. I was failing to see why you would use the EF over typed datasets if the EF is bound to SQL Server only. But is it true that the Linq ...
4
votes
3answers
2k 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 ...
4
votes
2answers
1k views

Strongly Typed Datasets and CommandTimeouts

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 ...
4
votes
2answers
562 views

Typed Datasets: a Good choice or Bad - Why one should use or not use Typed datasets in their applications?

Ever since .net 2.0 release this question has been discussed over a large number of times. Many of the developers are not in favour of Typed datasets and there are few who use them practically. The ...
3
votes
4answers
112 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. ...
3
votes
4answers
1k views

How can I include DBNull as a value in my strongly typed dataset?

I've created a strongly typed dataset (MyDataSet) in my .NET app. For the sake of simplicity, we'll say it has one DataTable (MyDataTable), with one column (MyCol). MyCol has its DataType property ...
3
votes
5answers
1k views

Strongly typed dataset wont fill, table mappings problem? c#.net 2.0

You've been excellent with my other questions previously - so here I am again, in need of some help! I've got a query which joins three tables and a strongly typed dataset which has the columns ...
3
votes
3answers
3k views

Nullable Int Column in DataSet

I'm working with .NET strongly-typed datasets and have a table with a nullable int column (and a nullable DateTime column as well). Apparently there is a bug with the dataset designer that prevents ...
3
votes
3answers
2k views

Empty BindingSource problem

I have a problem with binding data using BindingSource, typed dataset and DataGridView. My problem is: BindingSource, therefore grid, is empty after binding data (bindingSource.Count is 0). I couldn't ...
3
votes
7answers
2k views

Does anyone use typed DataSets in .NET?

I have once tried to use typed DateSets in a relatively small production application. Initially it looked like a pretty good idea, but turned out to be different. It was pretty fine for some basic ...
3
votes
5answers
807 views

How to migrate from MS Access to SQL server 2005?

I have a VB.NET windows application that pulls information from an MS Access database. The primary role of the application is to extract information from Excel files in various formats, standarize the ...
2
votes
1answer
17 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 ...
2
votes
0answers
40 views

Visual Studio automatically adjusting namespace on designer files

When ever I make a change to a typed-dataset in visual studio it will change the namespace to one based on what folder the file is in. Is there anyway to stop if from changing the namespace if one is ...
2
votes
1answer
81 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 ...
2
votes
4answers
696 views

How to convert typed DataTable into List of Entity?

I need to convert the data of a Typed DataTable to List of my entity. I've Mapped all the fields of entity with field of DataTable. Any ideas?
2
votes
4answers
2k views

Passing a SQL parameter to an IN() clause using typed datasets in .NET

First apologies as there are similar questions on this site, but none of them answer this problem directly. Im using typed datasets in VS 2010. I create a TableAdapter in a Dataset with a query like: ...
2
votes
1answer
362 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 ...
2
votes
2answers
204 views

How to generate data access layer with the help of dataset

i hard that with the help of typed dataset data access layer can be generated. how to generate such data access layer from where we can do the operation like add/edit/delete/search data from store ...
2
votes
1answer
681 views

SQL Server VARBINARY(MAX)

I have a stored procedure that inserts a varchar & VARBINARY(MAX) values in the table. I pass a c# byte[] to the varbinary(max) field. I also see that the size of the byte[] size is 80142 which ...
2
votes
0answers
320 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. ...
2
votes
2answers
296 views

.net dataset how to get deleted child rows

I have a strongly-typed dataset (VB.NET), using .NET Framework 2.0. Given a DataRow in a parent DataTable and a DataRelation, I need to find all related rows in the child DataTable that have a ...
2
votes
3answers
242 views

Is it possible to force your PHP input variables to be strong typed

When I started off with PHP, I was really happy with how PHP was loosely typed and how easy it was to learn. But as I grew into it, I realized that being loosely typed actually complicated my scripts ...
2
votes
2answers
97 views

Is there any way to have Strongly Typed WebForms similar to MVC Views?

I've just recently fallen in love with the world of ASP.NET MVC, and one of my favourite parts is the fact that I can have Strongly Typed views, and when I submit the data to the Service layer, all I ...
2
votes
2answers
100 views

Calculations on Subquery in strong typed dataset

following background: i have a Table-valued Function that returns a Table that is a kind of filtered view(views can not be parameterised) on a large table. Now i need many row count values on ...
2
votes
1answer
195 views

xml and strongly-typed datasets with the dataset designer

I'm not sure if this is possible but here is what I want to do: I have created a strongly-typed dataset, StrTypDS using the dataset designer in Visual Studio. I have also created an blank xml file and ...
2
votes
1answer
89 views

Can I configure a strongly typed data set to use nullable values?

If I have a strongly typed data table with a column for values of type Int32, and this column allows nulls, then I'll get an exception if I do this for a row where the value is null: int value = ...
2
votes
5answers
916 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
742 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 = ...
2
votes
1answer
311 views

SqlDateTime overflow thrown by Typed DataSet Insert

I'm using a Typed DataSet with an Insert statement; I have a table that has a smalldatetime field defined to accept null values. When I insert from a .NET 2.0 FormView, I get a "SqlDateTime overflow. ...
2
votes
1answer
170 views

SQL Server and .NET Typed Dataset AllowDBNull Metadata

Good afternoon, I am generating a typed dataset from a stored procedure. The stored procedure may contain something like: select t1.colA, t2.colA AS t2colA from t1 inner join t2 on t1.key ...
2
votes
1answer
334 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 ...
2
votes
2answers
456 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 / ...
2
votes
3answers
3k views

Casting generic datatable to typed datatable

I need to reuse a DataAccess method prescribed by client. This method returns a vanilla datatable. I want to cast this datatable to my Typed datatable. The amount of columns and their types will ...
2
votes
3answers
331 views

Nullable and typed dataset, is there a generator somewhere?

Trying to use a typed dataset with nullable fields... As been the case since the dawn of time, the typed dataset generator of visual studio does not support nullable types. Is there, somewhere in ...
2
votes
2answers
713 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 = ...
2
votes
2answers
412 views

SQL/.NET TableAdapters - How do I strongly-type calculated columns in either the database or the DataSet?

We use calculated columns in a few SQL Server 2005 tables which always return data of a specific type (bit, varchar(50), etc...). These tables are consumed by a .NET data layer using strongly-typed ...
2
votes
2answers
2k views

Dynamic Connection Strings for Strongly Typed DataSet in a Class Library using App.Config

This is my first question on StackOverflow.com and I'm not sure if this is the correct way to do this. I found a similar question titled: Modifying the Data Source for the Strongly Typed Dataset ...
2
votes
2answers
2k views

Strongly Typed DataSet with a set of TableAdapters per database provider?

I want a strongly-typed DataSet along with designer TableAdapters, but Visual Studio's DataSet designer generates provider-specific (e.g. SQL Server vs. MySql) code and I don't want to commit to just ...
2
votes
4answers
6k views

How do you filter a TableAdapter's FillBy based on two tables?

I'm using VS2008 C# Express and the Northwind database on a Windows Form application. I used drag and drop to set up the master details binding (I used the Orders and Order Details) for the two ...
2
votes
6answers
5k views

Last inserted record ID problems using typed DataSet and DataGridView

I'm using following for a simple database application: SQL Server Compact Edition .sdf file as database, with int primary key IDs. Typed DataSet and BindingSource as data access layer DataGridView ...
2
votes
4answers
1k 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 ...
2
votes
4answers
1k views

Calling Oracle SP with TableAdapter very slow

I have a query that runs super fast when executed in the sql editor (oracle): 1ms. The same query (as stored procedure) when executed by a DataSet-TableAdapter takes 2 seconds. I'm just retrieving ...
1
vote
1answer
24 views

Is there a better way of getting data saved locally?

In 2009 I started a major re-write of one of our oldest VB6 apps. I started by writing a WCF service, which is in .NET 3.5, to pull data out of our SQL Server 2005 database and store it back there. ...
1
vote
1answer
37 views

Best Practice for a small n-tier application - Linq-sql, Entity FrameWork, or Strongly typed datasets [closed]

Im after some advice on building an application for my business. We want to create an Asset Management and Equipment Inspection application that would be linked. We have quite specific needs hence why ...
1
vote
3answers
113 views

Using Strongly typed DataSet in VB.Net Project

Is using strongly typed dataset is good. Currently I am working on a project developed using VB.Net in Visual Studio 2010. Previously they were using Sql queries directly into SqlCommand of ...

1 2 3 4 5