0
votes
1answer
36 views
Directly manipulating a DataSet
I have a lightweight data-basey kind of thing. Functionally, I'd like to read and write tables out to disk(plus maybe some other info in the future).
I chose to use the DataSet object, paired with …
0
votes
1answer
75 views
asp.net 2.0: best data structure to bind to gridview
For the most part, the application I'm working on deals with object, and I can bind a list of objects to a gridview without any problems.
However, in a couple of cases, I want to display the results …
0
votes
0answers
2 views
One resultset across different tablix
Hello,
My first post here with 2 questions.
Question 1
I am new to SSRS environment and have been looking to get architectural information to explain me how rdl is processed and rendered. For e.g. …
0
votes
2answers
16 views
Populate DataGridView from a Stored Procedure
Using SQL Server 2008 I created a Stored Procedure called MyStoreProc and it runs fine from the Management Tools.
In VB.Net 2008 I created a new dataset and a new TableAdaptor. In this table adapter …
0
votes
1answer
17 views
dataset and non existing rows
Please help out newbie.
I am reading mothly sales statistics for last two years from stored procedure, display it on asp.net site and it works just fine.
Problem is with products that are not sold …
0
votes
0answers
19 views
Repeated use of elements in a schema and XSD.exe generated datasets.
My schema looks like this:
<xs:schema xmlns="DAN" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="DAN" elementFormDefault="qualified" attributeFormDefault="unqualified" …
0
votes
1answer
17 views
Binary stream ‘NN’ does not contain a valid BinaryHeader. Possible causes are invalid stream or object version change between serialization and deserialization
I am passing user defined classes over sockets. The SendObject code is below. It works on my local machine, but when I publish to the WebServer which is then communicating with the App Server on my …
0
votes
3answers
162 views
ASP.NET MVC - System.Data.DataSet not referenced problem
Hi There,
Well, first of all sorry about this question it must be pretty straight forward for you guys but I'm struggling myself on it, and I need to make it work :(
Well I'm trying t o use DataSet on …
0
votes
4answers
53 views
knowing if a string will be truncated when updating database
I'm working on a software that takes a csv file and put the data in a sqlserver. i'm testing it with bad data now and when i make a data string to long (in a line) to be imported in the database i got …
0
votes
1answer
413 views
Add ado.net data tables to a blank MDB file
I'm wondering how to add several data tables that I've built in code, to a blank MDB file that ships with my app.
I find it easy enough to connect to the MDB file via the OledbConnection object, but …
0
votes
6answers
164 views
Datareader or Dataset in Winform with long trips to database?
I've got a Winform app that will be used in the US and China. The SQL Server 2005 database is in the US, so the data access is going to be slower for the people in China. I'm deciding between using a …
0
votes
3answers
45 views
How to fill a dataset after getting a gridview?
I have a gridview which has many columns.. the columns are got separately and displayed in a gridview.
now i need to sort this gridview but i cannot do that.... i have found a way but i will need to …
0
votes
5answers
240 views
Silverlight pages binding to dataset(design question)
Hi everyone,
I have a legacy dot net application (now migrated to .net 2.0).
We need to convert this application to silverlight.
Problem here is the datalayer. All the methods from the datalayer …
0
votes
1answer
86 views
How to preserve the table schema when you write dataset out as XML
The heading pretty much explains what I would like to achieve, but here is an example to elaborate further:
Given the following table:
CREATE TABLE [CustSchema].[TestTable](
[Desc] [varchar](50) …
0
votes
2answers
35 views
Import typed DataSet to SQL Server
Dear guys
I want to import a typed DataSet with DataTables (not with TableAdapters) to my SQL Server database. The structure of all DataTables in the DataSet is the same like in the SQL Server …
