Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8753563
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:27:05+00:00 2026-06-13T13:27:05+00:00

As a newby in c# i am having a problem with getting a datatable

  • 0

As a newby in c# i am having a problem with getting a datatable being filled from a other datatable that has been build an put in memory. not all columns are needed in the new datatable. Could i get some help here pls.

here’s my code so far: where i found a part of my solution. but doen’t know how to proceed?

using System;
using System.IO;
using System.Text;
using System.Data;
using System.Data.Common;
using System.Data.SqlClient;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.ComponentModel;

public partial class _Planning : System.Web.UI.Page
{
ConnectionStringSettings Leerstoftabel;
SqlConnection connection;
int cursusID = 2;
DataTable LeerstofTabel;
DataTable Planning;


protected void Page_Load(object sender, EventArgs e)
{
    Leerstoftabel = ConfigurationManager.ConnectionStrings["CursusPlanner"];
    connection = new SqlConnection(Leerstoftabel.ConnectionString);

    SqlCommand cmd = connection.CreateCommand();
    cmd.CommandType = CommandType.Text;
    cmd.CommandText = "SELECT cursus.naam AS [Cursus Naam], vak.vaknaam, cursusvak.volgnummer, les.dagnummer, les.hoofdstuknummer, les.naam AS [Les Naam], les.lesomschrijving FROM cursus INNER JOIN cursusvak ON cursus.cursusID = cursusvak.cursusID INNER JOIN vak ON cursusvak.vakID = vak.vakID INNER JOIN les ON vak.vakID = les.vakID WHERE(cursus.cursusID = @cursusID)ORDER BY cursusvak.volgnummer";

    //int cursusID = Convert.ToInt32(DropDownList1.SelectedValue);
    cmd.Parameters.Add("@cursusID", SqlDbType.Int, 0).Value = cursusID;

    connection.Open();

    //het creeëren van een datatabel
    DbDataReader rdr = cmd.ExecuteReader();
    LeerstofTabel = new DataTable();
    LeerstofTabel.Load(rdr);

    connection.Close();
}


protected void Calendar1_DayRender(object sender, DayRenderEventArgs e)
{
    // weekend days can't be selected in calendar
    if (e.Day.IsWeekend)
        e.Day.IsSelectable = false;
}

protected void Button1_Click(object sender, EventArgs e)
{
    //create the DataTable named "Planning"
    Planning = new DataTable ("Planning");

    //Add the DataColumn using defaults
    DataColumn datum = new DataColumn("Datum");
    datum.DataType = typeof(DateTime);
    datum.AllowDBNull = false;
    datum.Caption = "Datum";
    Planning.Columns.Add(datum);

    //Add the DataColumn using defaults
    DataColumn hoofdstuk = new DataColumn("Hoofdstuk");
    hoofdstuk.AllowDBNull = false;
    hoofdstuk.Caption = "Hoofdstuk";
    Planning.Columns.Add(hoofdstuk);

    //Add the DataColumn using defaults
    DataColumn omschrijving = new DataColumn("Omschrijving");
    omschrijving.AllowDBNull = false;
    hoofdstuk.Caption = "Omschrijving";
    Planning.Columns.Add(omschrijving);

    //Add the DataColumn using defaults
    DataColumn lessen = new DataColumn("Lessen");
    lessen.AllowDBNull = false;
    lessen.Caption = "Lessen";
    Planning.Columns.Add(lessen);


    for (int i = 0; i < LeerstofTabel.Rows.Count; i++)
    {
        if (LeerstofTabel ["vaknaam"]).ToString() != vorigvak  // this statement doesn't work
        {
            DataRow newplannning = Planning.NewRow();
            newplannning["Datum"] = "";
            newplannning["Hoofdstuk"] = "*" + LeerstofTabel["vaknaam"];
            newplannning["Omschrijving"] = "";
            newplannning["Lessen"] = "";
            Planning.Rows.Add(newplannning);

        }

        Vorigvak = (LeerstofTabel["vaknaam"])ToString();
    }


    GridView1.DataSource = Planning;
    GridView1.DataBind();
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T13:27:07+00:00Added an answer on June 13, 2026 at 1:27 pm

    Use for loop with main Datatable and check which are the columns should be imported to new datatable. Then copy the data.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm getting acquainted with C++, and I'm having a problem with memory management. In
I am having a problem with the jQuery datepicker. My form has a add
I'm having problem with getting location.hostname for newly created window in javascript. For example
I'm having some trouble getting an object to follow a path that is drawn
My application has a message-only window that is launched from a newly created thread.
I'm having a problem with getting json data. I created 2 examples. One works,
For a while now we've been having anecdotal slowness on our newly-minted (VMWare-based) SQL
Additional thanks extend to Daniel Newby for answering my memory usage question (and Martin
I'm having a problem with copying or scripting my database at a web host
i'm having a problem with dynamically loaded forms - instead of using the action

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.