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.
1
vote
0answers
24 views
how to save changes from DataSet to physical Database
I've been looking at this problem for a while and can't see what I'm doing wrong.
I want to save changes from DataSet(ds.Tables("Login")) to physical Database (Data ...
0
votes
1answer
17 views
Populate SQL from xml file using dataset, c#
I have a big xml file, from which I get many tables:
DataSet l_DataSet = new DataSet();
l_DataSet.ReadXml(@"D:\file.xml");
tables that I have in dataset:
Channels: id_table, id_channel, name***.
...
0
votes
0answers
19 views
Writing Sqlite DataSet back to database
I have a Sqlite file that I am trying to load into a DataSet, iterate through by row, and update columns in that row.
public static void Database_Online_Check()
{
//Loads objects ...
0
votes
0answers
5 views
How to use a .net Dataset within Javascript/Jquery for Phonegap
I am implementing a Phonegap Application.
At the moment i am calling an IIS Webservice and i receive my Data as XML Document.
The Webservice is based on .NET and the information i have to work with ...
0
votes
1answer
34 views
Get data from a dynamic query using a DataSet in c#
I'm having a couple of days with a dynamic query that doesn't bring me data to show in a report. What I have done is to make a code that helps me build a dynamic query using the parameters that I get ...
1
vote
0answers
35 views
Different DataTables with one query?
Let's say I have two tables, Customer and Customer_address. To populate one datatable from a query is trivial, but is it possible to populate two different datatables via one join query?
Example:
...
1
vote
2answers
32 views
Convert Relational Dataset to List<T>
Change Dataset to List<Form>
dataset has 4 table each table has relationship with other table
ds.Relations.Add("Form_To_Tab", ds.Tables[0].Columns["Id"],
...
-3
votes
0answers
24 views
What is the difference between DATASET and XML? [closed]
Can anyone tell me what is difference between DATASET and XML?
Actually I have to fetch data from some web services and parse the data using PHP. Web services provide me XML and DATASET. So i don't ...
0
votes
0answers
16 views
Parsing xml First Branch of nodes to dataset
Hey I'm trying to parse data from an XML File into a List box based upon Branch. However when ever I try put the data in it find find all the properties with that name. How could I filter properties ...
0
votes
0answers
5 views
Find whether a column is null or not in Dataset
How to find whether a column in Data Table is Null (or) Not. If my Dataset(DS) contains 1 Data_Table, and 2 columns. I want to check whether the Column 2 is Null (or) Not.
1
vote
0answers
32 views
TextBox does not detect input
I have a listbox binded to a table "Leave" in a dataset and two textboxes for user to enter the name of leave and the number of days. Basically, the user is able to select an item from the listbox and ...
0
votes
1answer
20 views
Multi-dimensional data clustering
I am a data-mining newbie and need some help with a high dimensional data-set (subset is shown below). It actually has 30 dimensions and several thousand rows.
The task is to see how they are ...
0
votes
1answer
47 views
How to Loop through multiple Database connections skipping on connection error
I have a VB.Net program, that accesses 10 Databases, and fills 10 different datasets per database. The program runs automatically at 11PM when we do not have any activity so it didn't matter to me ...
0
votes
0answers
19 views
crystal Report Export Issue - Mind Boggling [duplicate]
I have an application that gets data from a dataset, parses it through Crystal Reports and exports the report as PDF file.
here is my Question.
When I provide the entire dataset as source to ...
0
votes
1answer
31 views
Populating a combo box with a list of functions - Need Advice
I'm looking for some advice on the best way to handle this.
I have a list of about 200 "Functions" which are listed in a combo box. When the user selects a 'function' from the list, I need to return ...
0
votes
1answer
20 views
Missing operand after '12' operator
i have a code like:
DataRow[] ClassTime = DateTime.Tables["Table"].Select("ClassListingDate=" + Convert.ToDateTime(DDLClassDate.SelectedItem.Text) + "");
where DateTime is dataset which contain ...
0
votes
2answers
29 views
Statsmodels: How to use get_rdataset
every time I try to use sm.datasets.get_rdataset I get the error message:
ImportError: cannot import name get_rdataset
I am using the latest version of statsmodels (0.5.0.dev-1bbd4ca) which I ...
1
vote
1answer
32 views
Error plotting SVM classification results for the spam dataset
I am having problem with plotting results of SVM classification for the spam dataset from kernlab package..
Code:
require(kernlab)
data(spam)
index <- sample(1:dim(spam)[1])
spamtrain <- ...
0
votes
0answers
39 views
vb.net import excel to datagrid
first of all I am really new in programming... could you please help??
Here is my doubt, I have an excel file (excel 2007 ver. 12.0) that I neeed to import to a datagrid view, but I get an error ...
0
votes
1answer
18 views
How to load arrays with 3 dimension using R2WinBUGS?
Since WinBUGS and R have different ways of organizing data for arrays, how should I organize the data when using R2WinBUGS so that the order is correct? Thanks!
0
votes
0answers
25 views
Fill dataset from another dataset
I'm trying to store un saved records based on query in dataset to show it in grid view to the user with no luck, How can I save them in dataset using the following code ?
for (int i = 1; i < ...
0
votes
1answer
15 views
Updating existing lines in MySql and treating Duplicated Keys
I have a MySql database containing data about users of an application. This application is in production already, however improvements are added every day. The last improvement I've made changed the ...
0
votes
1answer
20 views
Shared data set for cached reports?
Is there a way in SSRS to create a snapshot for a report that uses a shared dataset? We are looking for a way to dynamically set the server and credentials in SSRS, but it seems when the shared ...
0
votes
3answers
41 views
Telerik gridview : How to refresh grid view after Database change
I'm using radgridview in C# winform application to show data from database. I'm also altering database through ADO.Net. The problem is after I change the database, for example by deleting a row or ...
3
votes
3answers
48 views
Populating a dataset from a CSV file
I would like to read the contents of a CSV file and create a dataset.
I am trying like this:
var lines = File.ReadAllLines("test.csv").Select(a => a.Split(';'));
DataSet ds = new DataSet();
...
1
vote
4answers
39 views
Can I add a row to the middle of a dataset using c#?
Is it possible to add a row to the middle of an existing dataset with c#? I've done a lot of searching and haven't been able to find anything on how to do this. What have I tried? I've tried ...
0
votes
1answer
70 views
Update, Add rows to a datatable VB.Net
I have tried so hard to solve my problem, here's what I'm trying to do:
I have an XML file that I load into a dataset("ds") using ReadXML,
several tables are populated in to the dataset, the one I'm ...
0
votes
0answers
14 views
Setup the functions getDataSet and tearDown
Im trying to set up a test for my code.. And i haven't rly found any good information about getDataSet.
What does getDataSet do? Why do i need it? And how should the function look like?
And the ...
0
votes
1answer
9 views
Play / Run captured HTTP traffic from file
I have a raw HTTP traffic file with following format :
---------------------- dataset.txt ----------------------------------
GET http://localhost:8080/tienda1/index.jsp HTTP/1.1
User-Agent: ...
0
votes
0answers
16 views
Using DataTables from Database to populate program on startup without getting System.IndexOutOfRange messages
Hi Everybody and THANK YOU IN ADVANCE!! for any and all help
I am an absolute newbie to coding and programming (4-5months)
I am using visual studio 2012 and coding in C#
I am making a windows form ...
0
votes
0answers
42 views
Why pie chart is not showing correct result?
How to use pie chart to display number of present students in special course?
=Sum(IIF(Fields!State.Value = "NO", 1, 0))
But I get 0.
0
votes
0answers
24 views
How to do dynamic infer at Dataset
I'm trying to make the SPARQL endpoint system by jena.
This system used Model Class and had been a dynamic inference.
But It is necessary to use the Dataset Class instead of Model.
And I want to use ...
0
votes
1answer
35 views
Are there any example data sets for Python?
For quick testing, debugging, creating portable examples, and benchmarking, R has available to it a large number of data sets (in the Base R datasets package). The command library(help="datasets") at ...
0
votes
0answers
18 views
using stored procedures to write dataset back to database
I would like to use a dataset that contains all the tables of a certain database. There will be operations like delete, insert, query or updates. After the program exits or a button is pressed, I will ...
0
votes
1answer
64 views
Adding a SQL Server CE dataset to reportviewer in VS 2012 express C#
Hello all and thanks in advance for reading.
I am using VS 2012 express coding in C# and have an issue when adding data from a dataset (I use SQL Server CE) to a reportview. My code is this:
private ...
0
votes
1answer
52 views
Datagrid with datetimepicker and dropdown menu with a default value
I have a datagrid connected to a msql-server database. User can enter there worktime information there. The columns are e.g. Starttime, Endttime, Date, Projectname etc.
Usually I use a combobox with ...
0
votes
0answers
11 views
Dataset cannot be written into database
I thought I would find answers to this problem from here or the internet. But nope.
mycon.Open();
DataSet ds = new DataSet();
adap = new SqlDataAdapter("Select* from ...
0
votes
0answers
33 views
Update and Insert Data from Datagrid to Database via stored procedures
I wrote the following stored procedure. It just shows the rows of a table only for the declared windows user. I use this procedure in a typed dataset.
CREATE PROCEDURE USERTAB as
DECLARE ...
0
votes
1answer
50 views
Read Table and Random Forest in R
I'm trying to use the Random Forest method in R. I need to read a txt file (training set).
dataset<- read.table(path1,header=TRUE,sep=",")
The column names are numeric (i.e 1005_at) so they are ...
0
votes
3answers
13 views
How to create a new vector from grouped data in R?
Possible duplicate on SO: Computing a new variable using conditions of an existing data frame
I am trying to create a vector (e.g. z) from the group means. The vector will have a length equal to the ...
0
votes
0answers
29 views
Dynamically select DataTemplate based on tables residing in strongly typed dataset
I have a strongly typed DataSet with a number of tables and I'd like to be able to automatically/dynamically render a specific DataTemplate when displaying data from any of the tables. Now, what ...
0
votes
2answers
66 views
ASP 4.0, C# Writing a DataSet as XML Data
I am simply trying to load a dataset and output it on a webpage as XML with the schema being written as well. I have been researching to find a way to achieve this without any luck.
The code I am ...
0
votes
2answers
34 views
Failed to insert data into Acces DB
I try to insert some data in an Acces database using ADO.Net, it runs through all of my code without giving errors. But if I go look in my database, I see nothing is in the table.
Can someone please ...
0
votes
0answers
31 views
ArgumentNullException on ReadXML
I have a problem with my DataSet serialization to XML file. Every time I try to load the XML, the ReadXML() function throws the ArgumentNullException. What is interesting, this issue occurs only when ...
-1
votes
0answers
20 views
Uncaught SyntaxError: Unexpected token sprydataset
i want to be able to change an image when spry dataset's value is yes. this is my code at the moment. when i try to display this it comes out with Uncaught SyntaxError: Unexpected token.
<table ...
0
votes
0answers
29 views
cant populate gridview table using datatable,dataset,sqlDataAdapter
I do have a shopping cart page that I am trying to populate the values with gridview. Using the ,and store procedure I creating the columns. But so far I see Gridview does not populate anything as the ...
-2
votes
1answer
48 views
Difference between TableAdapter.Fillby() and TableAdapter.GetDataby() [closed]
What are the differences between FillBy() and GetDataBy() methods in TableAdapters?
0
votes
0answers
35 views
How do I get the tables in an SSRS report to use the data in a dataset without multiple trips to the database
I have a dataset which has the data to be used in by several tables in my 2012 SSRS report.
Each table uses a different set of rows in the dataset, i.e. where a particular column in the dataset has a ...
1
vote
0answers
39 views
RMSE of (x,y) coordinates
I have a data set of coordinates (X,Y) values in the Cartesian plane and I would like to find the RMSE of these points to 1 coordinate (x1,y1). So basically, (X,Y) are around (x1,y1) and I would like ...
0
votes
1answer
57 views
Using Case statement with nested SELECT in a dataset to then populate a parameter drop-down SSRS
I am able to populate a parameter drop-down in SSRS that grabs a list of activities from a dataset. Though the issue I have is within the data there is a activitylabel field that is only contained in ...





