Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Updating multiple base data

Updating multiple base data

Scheduled Pinned Locked Moved C#
databasehelptutorialannouncement
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    N Offline
    Nitin raj
    wrote on last edited by
    #1

    hi, I have fetched two database tables "MTQABenchMarks" and "Users" in the datagridview. This is a windows application. Now I have to update the "MTQABenchMark" database after making changes to the datatable present in the application. When I run the code it is throwing an exception "Dynamic SQL generation is not supported against multiple base tables." How to solve this. the code is public Form1() { InitializeComponent(); } static SqlConnection Con = new SqlConnection("Data Source= 192.168.100.234; Initial Catalog=gishyd; User ID=sa; password=gis*2005"); SqlDataAdapter Da = new SqlDataAdapter("SELECT dbo.Users.UserID, dbo.MTQABenchMark.Id as EmpID, dbo.Users.FirstName + ' ' + dbo.Users.LastName AS Name, dbo.MTQABenchMark.NoofMinPerDay,dbo.MTQABenchMark.PerMonth FROM dbo.Users INNER JOIN dbo.MTQABenchMark ON dbo.Users.UserID = dbo.MTQABenchMark.EID ", Con); DataSet Ds = new DataSet(); private void Form1_Load(object sender, EventArgs e) { Da.Fill(Ds, "MTQABenchMark"); dataGridView1.DataSource = Ds.Tables["MTQABenchMark"]; } private void button2_Click(object sender, EventArgs e) { SqlCommandBuilder CmdBld = new SqlCommandBuilder(Da); Da.InsertCommand = CmdBld.GetInsertCommand(); Da.Update(Ds, "MTQABenchMark"); MessageBox.Show(" Database is Updated"); } } } Please Help. Nitin Raj Bidkikar

    Nitin Raj Bidkikar

    A 1 Reply Last reply
    0
    • N Nitin raj

      hi, I have fetched two database tables "MTQABenchMarks" and "Users" in the datagridview. This is a windows application. Now I have to update the "MTQABenchMark" database after making changes to the datatable present in the application. When I run the code it is throwing an exception "Dynamic SQL generation is not supported against multiple base tables." How to solve this. the code is public Form1() { InitializeComponent(); } static SqlConnection Con = new SqlConnection("Data Source= 192.168.100.234; Initial Catalog=gishyd; User ID=sa; password=gis*2005"); SqlDataAdapter Da = new SqlDataAdapter("SELECT dbo.Users.UserID, dbo.MTQABenchMark.Id as EmpID, dbo.Users.FirstName + ' ' + dbo.Users.LastName AS Name, dbo.MTQABenchMark.NoofMinPerDay,dbo.MTQABenchMark.PerMonth FROM dbo.Users INNER JOIN dbo.MTQABenchMark ON dbo.Users.UserID = dbo.MTQABenchMark.EID ", Con); DataSet Ds = new DataSet(); private void Form1_Load(object sender, EventArgs e) { Da.Fill(Ds, "MTQABenchMark"); dataGridView1.DataSource = Ds.Tables["MTQABenchMark"]; } private void button2_Click(object sender, EventArgs e) { SqlCommandBuilder CmdBld = new SqlCommandBuilder(Da); Da.InsertCommand = CmdBld.GetInsertCommand(); Da.Update(Ds, "MTQABenchMark"); MessageBox.Show(" Database is Updated"); } } } Please Help. Nitin Raj Bidkikar

      Nitin Raj Bidkikar

      A Offline
      A Offline
      Aftab Sindhi
      wrote on last edited by
      #2

      You have 2 options. 1. Don't use INNER JOIN in your query. Get both tables separately and make relation between them at .NET level. Here you can select like a INNER JOIN only related records in both tables. 2. Don't generate and get INSERT or UPDATE command from Command Builder. Build manually INSERT or UPDATE commands for the ADAPTER. For more information on these approaches GOOGLE. Regards

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups