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
15 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
0answers
17 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
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 …
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
2answers
31 views
Can I change the indenting style used when saving a DataSet to xml
I'd like to use tabs, or at least more than 2 spaces per indent level. IIRC there are options available to adjust this when using serialization to write a class out; but I don't see any way to adjust …
1
vote
2answers
42 views
.NET DataSet.GetXml() - what’s the default encoding?
Existing app passes XML to a sproc in SQLServer 2000, input parameter data type is TEXT;
The XML is derived from Dataset.GetXML(). But I notice it doesn't specify an encoding.
So when the user …
0
votes
0answers
41 views
DataSet generated by xsd.exe is not writing atributes on root element
Child elements of my data are being written directly off the root element instead of off the element that is their parent in the schema.
My xsd:
<xs:schema xmlns="MyNameSpace" …
-1
votes
0answers
69 views
Visual Studio Data Set Designer Question
I added a data set to my data tier class library and when I try and drag a table from the data set designer to a winform in my UI class library it won't let me. When I add the data set directly to my …
1
vote
1answer
60 views
Query a DataSet
I'm reading data from xml files into a strong typed DataSet. The data ends up in multiple tables; can I run queries against it to create a denormalized view to display in a DataGrid?
Sample input:
…
1
vote
2answers
31 views
IQueryable into a hierarchy
I currently have an IQueryable of Questions. In my Question object I have and "id" and a "parentId" which can be used to create a hierarchy. Currently, I bind a RadTreeView to the IQueryable of …
0
votes
1answer
39 views
ASP.NET MVC 1: DataSet ModelBinding
I'm in a situation where I'm being given a dataset to output to an MVC view. I'm really struggling to figure out how to get the modelbinder to pick it up on the way back in after a submit. I have …
0
votes
1answer
61 views
Combine Data from multiple DataSets
I'm loading data from multiple xml files with different schemas into DataSets. I do have foreign key style relationships between the tables in each xml file but to date they're only enforced by code. …
0
votes
1answer
43 views
Which DataSet creation technique is faster?
Which one of these techniques is faster?
1)
DbDataAdapter dataAdapter = _factory.CreateDataAdapter();
dataAdapter.SelectCommand = _command;
dataSet = new DataSet();
dataAdapter.Fill(dataSet);
2)
…
1
vote
4answers
48 views
DataSet Operations
I'm working with DataSets, specifically with a an array of DataRows:
My question is, how am I able to perform Unions/Intersects of DataRow[]'s WITHOUT using LINQ?
