Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
8k views

How do I get column names to print in this C# program?

I've cobbled together a C# program that takes a .csv file and writes it to a datatable. Using this program, I can loop through each row of the data table and print out the information contained in ...
3
votes
3answers
28 views

How To Change DataType of a DataColumn in a DataTable?

I have: DataTable Table = new DataTable; SqlConnection = new System.Data.SqlClient.SqlConnection("Data Source=" + ServerName + ";Initial Catalog=" + DatabaseName + ";Integrated Security=SSPI; Connect ...
3
votes
2answers
381 views

ASP.NET MVC 3 - Entity Framework SaveChanges() on Update - Needed to ignore opcional columns

When I update a table from a Form through Autogenerated EF, if I remove some data-columns from the view form because I don't want to be editable, that columns are updated with null value, how can ...
3
votes
2answers
3k views

Determine if DataColumn is numeric

Is there a better way than this to check if a DataColumn in a DataTable is numeric (coming from a SQL Server database)? Database db = DatabaseFactory.CreateDatabase(); DbCommand cmd = ...
2
votes
3answers
73 views

how to find the max in a datacolumn of datetime?

I have a DataColumn of DateTime, I would like to know how I can have only the sooner date (min) and the later date (max). Thanks
2
votes
4answers
117 views

Any built in functions to convert Datacolumn to split strings in C#.net 2.0

I have a datacolumn, which I would like to split e.g. ALICE MEGAN JANET split to: ALICE, MEGAN, JANET I know I can do it with for loops but I'd like to know if there's any built-in functions in ...
2
votes
2answers
578 views

Reorder columns in datatable?

I'm using xsd files to validate xml files. In the xsd files, only a few of the elements are required and the rest are optional. However, it is sequential so the order of the elements as they appear in ...
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
2answers
615 views

Convert string to guid in DataColumn

How do you convert a DataColumn of GUIDs set as type string to a DataColumn of GUIDs where the type is Guid? A column in the source data has the wrong type and I cannot change it there.
1
vote
4answers
83 views

How can I get a sum for the column “pieces” in a datatable?

How can I get a sum for the column "pieces" in a datatable? Say I had the following table. How can I calculate the "total" pieces for article="milk" and artno="15"? Columns: article artno ...
1
vote
2answers
97 views

get sum from a DataColumn values c#

i have a table in a dataadapter. i want get count and sum of a specific column of it. how is that possible ? this is the code for reach to the column, what after that? DataColumn buy_count = ...
1
vote
3answers
699 views

how to convert the entire content of a DataTable column to a delimited string in C#?

I am retrieving data from an MSSQL server using the SqlDataAdapter and DataSet. From that DataSet I am creating a DataTable. My goal is to convert each column of the table into a string where the ...
1
vote
3answers
194 views

Best way to add a new column to a data table based on an existing column

I have a data-table with data. I need to add another column to the datatable having the same value of another column but with less precision. Ie the original column would be having value 12.123 but ...
1
vote
4answers
557 views

Change the value of every cell in a DataTable column

I have a System.Data.DataTable which I'm binding to a GridView. If the user doesn't have a certain security role, I want to replace the data in certain columns with an "X". Can I do this without ...
1
vote
1answer
219 views

How to make totals of the datatable cells and construct a new column in that datatable?

There are three columns in the datatable Amount Commission Others 1000 200 100 2000 100 200 Now I want to build another column based on these three columns name totalAmount that ...
1
vote
1answer
287 views

Would it be possible to extend the DataColumn.Expression

Could extension method be used for DataColumn.Expression to support for example the replace function ? If yes, any sample code available somewhere ? Thanks.
1
vote
1answer
1k views

Handle DataTable.DataRow cell change event

I have a DataTable that has several DataColumns and DataRow. Now i would like to handle an event when cell of this DataRow is changed. How to do this in c#?
1
vote
2answers
834 views

Customize DataColumn.Expression handling in C#

I would like to change behavior of DataColumn.Expression so that when I write: DataColumn.Expression = "MyMethod(Price)" it will call MyMethod, pass value from Price column into it and display ...
0
votes
0answers
19 views

Checking if a Column Name Exists while creating Table from a Generic.Dictionary

I have a Generic.Dictionary which is contains a list of locations and various data referring to that location. I need to turn this into a DataTable to bind it to a Repeater. Code Below: Dim ...
0
votes
2answers
34 views

changing values of a column in datatable in vb.net

I want to loop through a databale and change the values of a specific column in that datatable. eg: the database returns Request_ID, Desc, Date and Status_Ind. The Status_Ind column contains integer ...
0
votes
2answers
55 views

ASP.NET CheckBox in DataTable

I added a checkbox into my datatable Initialization DataTable dt = new DataTable(); DataRow dr = null; Adding the checkbox dt.Columns.Add(new DataColumn("CheckBoxCol", typeof(CheckBox))); Add ...
0
votes
1answer
171 views

In C#.Net, Primary key is set for DataTable, yet exception 'Table doesn't have a primary key' is thrown

The precise exception is 'System.Data.MissingPrimaryKeyException' occurred in System.Data.dll Additional information: Table doesn't have a primary key. However, I have set the primary key. This is ...
0
votes
0answers
77 views

ASP.net C# datatable array MsAccess table

How to read data from one column(field) of MSACCESS TABLE into an one-dimensional C# Array[] keeping rownumber(record ID) as index of the array[] elements?I want to unload this Array[] into a single ...
0
votes
0answers
48 views

Navigate to content of DataGridTemplateColumn in WPF

I'm designing a WPF DataGrid, and I set the DataGridTemplateColumn.CellTemplate, which is of type DateTemplate, to use one of our inherited TextBlocks. The xaml code looks like this: ...
0
votes
2answers
28 views

Proper syntax for container.dataitem binding to A Href tag

I have a Datagrid with an ItemTemplate in it to convert a dataitem to a link. However, when I run the app it errors out with: FolderID is neither a DataColumn nor a DataRelation for table Table. ...
0
votes
2answers
98 views

How to get the SqlType of a column in a DataTable?

I have a DataTable obtained from a SQL DataBase, like this: using (SqlCommand cmd = new SqlCommand(query, _sqlserverDB)) { using (SqlDataAdapter adapter = new SqlDataAdapter(cmd)) { ...
0
votes
0answers
130 views

advanced DataColumn Expression with child relationship and filtering in .Net

We have a dataset with many relationships. We are looking at creating a summary column on a parent row that would display the ID of the 1 child that meets a particular criteria. Basically, we have x ...
0
votes
7answers
356 views

How to divide DATETIME column value into day, month and year in C#

I have a DATETIME column in my database. I need to get the value and divide it into 3 variables each having the year, month and day I am trying to do dataadapter.Fill(dataset, "tablename"); string ...
0
votes
0answers
84 views

Computed column in DataTable calculating DateTime?

I have a DataTable with 2 column of type DateTime (EntranceTime and LeavingTime). I want to have a third column that returns the remaining TimeSpan. For instance, if user enters Entrance 1 PM and ...
0
votes
2answers
121 views

Get the original data format of a DataColumn

How can I get the original data format (in the database) of a DataColumn object? I have DataColumn objects from a DataTable that is part of the result of opening a DBCommand SQL "select" query. How ...
0
votes
0answers
28 views

Help on setting up DataRelation & Computational columns

Using .Net 3,5 & VS2008, I created two databases, each with tables as follows: - General -- Catalogue (table filled with item data) --- Expression Column (compilation of names from this table) - ...
0
votes
1answer
27 views

Provide default sorting on a yui:datacolumn

I have defined a yui:datacolumn like below and wanted to sort this column in a specific way during page load. yui:datacolumn key="Action" label="Action" sortable="false" If I use the below code, I ...
0
votes
2answers
175 views

DataColumn - how to distinguish datetime or datetime2

I am having trouble identifying the type of a datetime DataColumn. If I grab a DataTable from SQL 2008 a datetime DataColumn could be a datetime or datetime2 but there appears to be no difference ...
0
votes
1answer
116 views

Setting the size of char datacolumn

I would like add new column to my datatable. The column is of type char with length of 10. DataColumn d = new DataColumn(fieldname, typeof(char)); dt.Columns.Add(d); My Question is how do I add ...
0
votes
0answers
69 views

How do can I extend the basic functionality of the DataColumn expression?

I'm giving used the ability to dynamically build the expression that will be applied to a DataColumn. I'd like also include unsupported things like exponents and roots in the expression. Is this ...
0
votes
3answers
365 views

Best way add a new column with sequential numbering in an existing data table

I have a non empty datatable . What is the best way to add another column to it that has sequential numbering starting from 1. I tried the following code. But did not work. DataColumn dc = new ...
0
votes
2answers
376 views

DataTable DataRow DataColumn for columns

I am dumping a cvs file into a datatable. I am able to loop through each row and each column. I only do run some some logic for 4 columns out of 16 columns. I tried if but not working. How do i use ...
0
votes
2answers
555 views

DataColumn.ExtendedProperties Data to GridView

What is the best way for me to access extended properties of a DataColumn on rowDataBound and apply a certain class and tool-tip if the error key exists? protected void gridView_rowDataBound(object ...
0
votes
1answer
923 views

Programatically set the width of a DataColumn for use with a DataGrid

I assign a column programmatically to a DataTable like this: myDataTable.Columns.Add(myDataColumn); Is there a way to programmatically set the width / size of the column? I'm using WPF with C# in ...
0
votes
2answers
381 views

In WPF, how can I bind a datagrid column to a specific column of a datatable?

I have a Datatable with many columns, and a datagrid in which I need to display only a few of those columns. I need a codesample of how to do it. I found a whole bunch of examples telling me to turn ...
0
votes
1answer
165 views

DataReader, DataColumn - Can These Show Me Columns In Schema Such as SomeSchema.SomeColumn?

I have a database table where columns are in multiple schemas. Example: SomeTable SomeSchema.Column1 SomeSchema.Column2 AnotherSchema.ColumnA AnotherSchema.ColumnB I have code using a ...
0
votes
1answer
72 views

How to save an expression datacolumn to the database?

I have a datagridview on a form with multiple columns. Three of the columns are expression columns. One column is subtracted from the second and the result is displayed in the third. Everything works ...
0
votes
3answers
161 views

Testing equality of DataColumn values in C#

I've written some code to test equality between column values in DataTables when the column type isn't known. Testing directly like this: row["Foo"] == row["Bar"] always results in false, ...
0
votes
1answer
346 views

A null value should be considered as 0 when addition of it is done with decimal value

There are three column in the datatable A,B and C. Now each column is type of decimal. Now I am doing like dt.Columns["A"].Expression="B+C"; to make addition of Column B's record and column C's ...
0
votes
1answer
1k views

DataTable.Select Behaves Strangely Using ISNULL Operator on NULL DateTime Column

I have a DataTable with a DateTime column, "DateCol", that can be DBNull. The DataTable has one row in it with a NULL value in this column. I am trying to query rows that have either DBNull value in ...
0
votes
2answers
748 views

How to make addition of two columns data for another column where those two columns are type of string?

I have datatable and there two column which is type of string and I want to make addition of that two columns data for another column how can I do that ? My column name contains special character and ...
0
votes
0answers
74 views

Using old-school ado but can anyone improve this using L2S or dynamic sql

I am rolling through all the cols on a particular row for processing. I am looking in general to replace using ado.net with L2S or some dynamic sql that can positionally read the columns on a ...
0
votes
1answer
442 views

ADO.net Question - How can I update a column in a Row of a DataTable with RowChanged without triggering infinite loop?

How can I update the column value (programmatically) in a Row of a DataTable via use of the RowChanged event, without triggering infinite loop? (which I currently get) Note I do not want to use the ...
0
votes
1answer
133 views

Seeing named datacolumns in Visual Studio debugger?

When I'm debugging a datatable, say in the watch window, I'll often choose the Rows property, and then a particular index-- 0 or 1, often times. When I do that, I see an ItemArray list with numeric ...
0
votes
2answers
462 views

Using an (I)List<string> as the source for a DataColumn

I'm playing around with the DataGridView control offered by .NET. Upon till now I seem to be unable to bind an (I)List to a DataColumn. Is this possible and how should I go around doing this?

1 2