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. How C# should communicate with access db file ?

How C# should communicate with access db file ?

Scheduled Pinned Locked Moved C#
databasecsharpwinformshelpquestion
19 Posts 5 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 Not Active

    I've done more reading than you apparently. What is your point? Just because you are more comfortable with one database or edition over another does not make it the "best" choice.


    I know the language. I've read a book. - _Madmatt

    C Offline
    C Offline
    coding freaks
    wrote on last edited by
    #10

    best choice for me yar... i didnt say for all... ok u want in access? right? i wil send u via mail...

    C D 2 Replies Last reply
    0
    • C coding freaks

      best choice for me yar... i didnt say for all... ok u want in access? right? i wil send u via mail...

      C Offline
      C Offline
      coding freaks
      wrote on last edited by
      #11

      hi biscoito ur mail id pls. i wil mail u the porgram from which i learnt. its i access...

      N D 2 Replies Last reply
      0
      • C coding freaks

        hi biscoito ur mail id pls. i wil mail u the porgram from which i learnt. its i access...

        N Offline
        N Offline
        Not Active
        wrote on last edited by
        #12
        1. you should be responding to the op 2) the op is a fool if they take advice or examples from you since you can't even respond to the correct post and don't know what c# is or which database edition to choose let alone the other posts you have made

        I know the language. I've read a book. - _Madmatt

        C 1 Reply Last reply
        0
        • N Not Active

          I've done more reading than you apparently. What is your point? Just because you are more comfortable with one database or edition over another does not make it the "best" choice.


          I know the language. I've read a book. - _Madmatt

          L Offline
          L Offline
          Luc Pattyn
          wrote on last edited by
          #13

          you've got a new fan! :laugh:

          Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]


          I only read code that is properly formatted, adding PRE tags is the easiest way to obtain that.


          1 Reply Last reply
          0
          • C coding freaks

            best choice for me yar... i didnt say for all... ok u want in access? right? i wil send u via mail...

            D Offline
            D Offline
            Dave Kreskowiak
            wrote on last edited by
            #14

            sidhu hacks wrote:

            best choice for me yar

            Are you the one that's going to be running the code? Storing the information? No. Your application requirements dictate the database you use, NOT your confort level with it.

            A guide to posting questions on CodeProject[^]
            Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                 2006, 2007, 2008
            But no longer in 2009...

            C 1 Reply Last reply
            0
            • C coding freaks

              hi biscoito ur mail id pls. i wil mail u the porgram from which i learnt. its i access...

              D Offline
              D Offline
              Dave Kreskowiak
              wrote on last edited by
              #15

              Noone in their right mind is going to give you their email address.

              A guide to posting questions on CodeProject[^]
              Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                   2006, 2007, 2008
              But no longer in 2009...

              C 1 Reply Last reply
              0
              • N Not Active
                1. you should be responding to the op 2) the op is a fool if they take advice or examples from you since you can't even respond to the correct post and don't know what c# is or which database edition to choose let alone the other posts you have made

                I know the language. I've read a book. - _Madmatt

                C Offline
                C Offline
                coding freaks
                wrote on last edited by
                #16

                i just said i'm confortable with it man.. thats all dont start scolding me..

                1 Reply Last reply
                0
                • D Dave Kreskowiak

                  Noone in their right mind is going to give you their email address.

                  A guide to posting questions on CodeProject[^]
                  Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                       2006, 2007, 2008
                  But no longer in 2009...

                  C Offline
                  C Offline
                  coding freaks
                  wrote on last edited by
                  #17

                  how should i take it as? A compliment?

                  1 Reply Last reply
                  0
                  • D Dave Kreskowiak

                    sidhu hacks wrote:

                    best choice for me yar

                    Are you the one that's going to be running the code? Storing the information? No. Your application requirements dictate the database you use, NOT your confort level with it.

                    A guide to posting questions on CodeProject[^]
                    Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                         2006, 2007, 2008
                    But no longer in 2009...

                    C Offline
                    C Offline
                    coding freaks
                    wrote on last edited by
                    #18

                    since he asked for db connection i thoguht he s a noob like me.. and so i told him wat i felt thats all.... chill out...

                    1 Reply Last reply
                    0
                    • B biscoito

                      Well, I have a lot of questions regarding this topic, so i'll show you some of my doubts: I'm currently developing a C# windows forms application that communicates with a access database file to store all my data. Now that my relational database is getting bigger, i'm wondering if I should make table relations inside the access file or in C#. Sometimes I have to make changes to more than one table at a time and I don´t know how and who should do these kind of transactions (access/c#). I need to use DataSets, Datareaders, Databinding, etc to do that, right? How these communication should work, I mean, best practice for this!? Hope you can help me with this. Thanks, bisc8 PS - Some good book about this?

                      C Offline
                      C Offline
                      coding freaks
                      wrote on last edited by
                      #19

                      required using System.Data.OleDb; Declaration part :) string id; string sqlQRY; OleDbConnection cn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Application.StartupPath + "/Data.mdb"); OleDbCommand cmd = new OleDbCommand(); OleDbDataReader dr; Open the connection in this statement cn.Open(); its like database items loading in a list cmd.CommandText = "SELECT * FROM tbladmin ORDER BY ID ASC"; cmd.Connection = cn; dr = cmd.ExecuteReader(); while (dr.Read()) { ListViewItem list = new ListViewItem(dr[0].ToString()); list.SubItems.Add(dr[1].ToString()); list.SubItems.Add(dr[2].ToString()); listView1.Items.AddRange(new ListViewItem[] { list }); } dr.Close(); this is wat i can help for now.. it tedious cant post the whole code here.. sending ur mail id wil help.... others pls gimme a break .. stop pulling my leg...

                      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