Top "Dataset" questions

A dataset is a collection of data, generally represented in tabular form, with columns signifying different variables and rows signify different members of the set.

Stored procedure return into DataSet in C# .Net

I want to return virtual table from stored procedure and I want to use it in dataset in c# .net. …

c# asp.net stored-procedures dataset
Sort columns of a dataframe by column name

This is possibly a simple question, but I do not know how to order columns alphabetically. test = data.frame(C = …

r sorting dataset
Direct method from SQL command text to DataSet

What is the most direct route to get a DataSet if I have a sql command? string sqlCommand = "SELECT * FROM …

c# sql dataset
How do I import from Excel to a DataSet using Microsoft.Office.Interop.Excel?

What I want to do I'm trying to use the Microsoft.Office.Interop.Excel namespace to open an Excel file (…

c# excel interop dataset excel-interop
Convert generic list to dataset in C#

I have a Generic list of Objects. Each object has 9 string properties. I want to turn that list into a …

c# list dataset
How to loop through a dataset in powershell?

I am trying a "very" simple task to output values of each rows from a DataSet : for ($i=0;$i -le $…

powershell dataset loops
How to add header to a dataset in R?

I need to read the ''wdbc.data' in the following data folder: http://archive.ics.uci.edu/ml/machine-learning-databases/breast-cancer-wisconsin/ …

r dataset statistics
Looping through a DataTable

Well. I have a DataTable with multiple columns and multiple rows. I want to loop through the DataTable dynamically basically …

c# datatable dataset
Datatable vs Dataset

I currently use a DataTable to get results from a database which I can use in my code. However, many …

c# dataset datatable
Iterate through DataSet

I have a DataSet named DataSet1. It contains an unknown number of tables and an unknown number of columns and …

c# dataset