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. Please give me an idea.

Please give me an idea.

Scheduled Pinned Locked Moved C#
databasesysadminquestionannouncement
3 Posts 3 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.
  • G Offline
    G Offline
    god4k
    wrote on last edited by
    #1

    Dear, Sir I will develop an application that automatic check what update on database on the Web Server. Please give me an idea and overview about it. To get what update via Internet I should use what classs. I ever create database application, but I never create application that connect to the internet. And I think I should use thread in this application. Is.... correct? Thank You. Sorry for bad English. :););P:-D:(:((:-O:zzz::omg::wtf::rolleyes::laugh::mad::confused::~ :| X| :suss::cool::eek::sigh::doh::rose:

    J H 2 Replies Last reply
    0
    • G god4k

      Dear, Sir I will develop an application that automatic check what update on database on the Web Server. Please give me an idea and overview about it. To get what update via Internet I should use what classs. I ever create database application, but I never create application that connect to the internet. And I think I should use thread in this application. Is.... correct? Thank You. Sorry for bad English. :););P:-D:(:((:-O:zzz::omg::wtf::rolleyes::laugh::mad::confused::~ :| X| :suss::cool::eek::sigh::doh::rose:

      J Offline
      J Offline
      Jinwah
      wrote on last edited by
      #2

      You need to read about ADO.NET. Disconnected data sources is the main area. HTH Luke PS: Never appologise for your english (most of us "english" do not speak it very well and the majority cannot even speak another language including me ;)

      1 Reply Last reply
      0
      • G god4k

        Dear, Sir I will develop an application that automatic check what update on database on the Web Server. Please give me an idea and overview about it. To get what update via Internet I should use what classs. I ever create database application, but I never create application that connect to the internet. And I think I should use thread in this application. Is.... correct? Thank You. Sorry for bad English. :););P:-D:(:((:-O:zzz::omg::wtf::rolleyes::laugh::mad::confused::~ :| X| :suss::cool::eek::sigh::doh::rose:

        H Offline
        H Offline
        Heath Stewart
        wrote on last edited by
        #3

        As Jinwah was getting at, see the System.Data.DataSet class documentation in the .NET Framework SDK, as well as System.Data.Common.DbDataAdapter - specifically, one of its derived classes depending on what database you're accessing (like System.Data.SqlClient.SqlDataAdapter for a SQL Server database). You give the DbDataAdapter the appropriate SELECT, INSERT, UPDATE, and DELETE commands (it has properties for each), which you can either use the DataAdapter designer in VS.NET or a CommandBuilder to generate, or type them yourself but generating an example to get an idea might be a good idea. Then, whenever you update, remove, or insert information in the DataSet, you call DbDataAdapter.Update(DataSet) which will use the change type information for each DataRow and will call the appropriate DbCommand on the DbDataAdapter. There are several examples of this on the CodeProject web site, as well as examples in the .NET Framework SDK.

        -----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----

        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