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. Visual Studio
  4. full project

full project

Scheduled Pinned Locked Moved Visual Studio
csharpdatabase
12 Posts 4 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.
  • H Offline
    H Offline
    Haanaza
    wrote on last edited by
    #1

    full project for the sql application and C#

    L OriginalGriffO 3 Replies Last reply
    0
    • H Haanaza

      full project for the sql application and C#

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      Stop posting these messages; nobody is going to give a you a full project for anything.

      The best things in life are not things.

      H P 2 Replies Last reply
      0
      • L Lost User

        Stop posting these messages; nobody is going to give a you a full project for anything.

        The best things in life are not things.

        H Offline
        H Offline
        Haanaza
        wrote on last edited by
        #3

        Thanks anyway, but I just need to train the program through a project , but if you please you can explain to me some thing in (windows form Application , ADO)

        L 1 Reply Last reply
        0
        • H Haanaza

          Thanks anyway, but I just need to train the program through a project , but if you please you can explain to me some thing in (windows form Application , ADO)

          L Offline
          L Offline
          Lost User
          wrote on last edited by
          #4

          Buy a book, read some articles, use Google. Unless you are willing to learn for yourself you will never succeed in this field.

          The best things in life are not things.

          OriginalGriffO 1 Reply Last reply
          0
          • L Lost User

            Buy a book, read some articles, use Google. Unless you are willing to learn for yourself you will never succeed in this field.

            The best things in life are not things.

            OriginalGriffO Offline
            OriginalGriffO Offline
            OriginalGriff
            wrote on last edited by
            #5

            Univote countered

            Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."

            "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
            "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

            L 1 Reply Last reply
            0
            • H Haanaza

              full project for the sql application and C#

              OriginalGriffO Offline
              OriginalGriffO Offline
              OriginalGriff
              wrote on last edited by
              #6

              You have been given the advice you need: Pick one of: 1) Get a book and read it. Do all the examples yourself. 2) Go on a formal course, and learn that way. 3) Find an internet tutorial and try to keep up with it. Even if we gave you a full project, what would you learn from it? Nothing useful. You might be able to follow it a bit and see how it works, but that would not give you any insight into why it works. The Why is far more important than how. For example, this is all the code you need to retrieve information from an SQL Server database:

                      using (SqlConnection con = new SqlConnection(strConnect))
                          {
                          con.Open();
                          using (SqlCommand com = new SqlCommand("SELECT iD, description FROM PurchaseTypes WHERE iD=@ID", con))
                              {
                              com.Paramaters.AddWithValue("@ID", requestedId);
                              using (SqlDataReader reader = com.ExecuteReader())
                                  {
                                  while (reader.Read())
                                      {
                                      int id = (int) reader\["iD"\];
                                      string desc = (string) reader\["description"\];
                                      Console.WriteLine("ID: {0}\\n    {1}", iD, desc);
                                      }
                                  }
                              }
                          }
              

              Using that pattern you can retrieve any info from any SQL server database. But you don't know why using is there. Would it work without it? Yes. So why put it there? Why the parameters? and so forth. Structured learning tells you these things. And they are important, because if you don't know them, the will bite you on the ass. Not now, but someday, when they have hidden for a while, and you have no idea that the problem was caused in that code that worked so well... Oops. Where did my database go?

              Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."

              "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
              "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

              1 Reply Last reply
              0
              • OriginalGriffO OriginalGriff

                Univote countered

                Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."

                L Offline
                L Offline
                Lost User
                wrote on last edited by
                #7

                Thanks, it's only because I haven't given him/her a full working project. Just another lazy B who thinks the world owes him a living.

                The best things in life are not things.

                OriginalGriffO 1 Reply Last reply
                0
                • L Lost User

                  Thanks, it's only because I haven't given him/her a full working project. Just another lazy B who thinks the world owes him a living.

                  The best things in life are not things.

                  OriginalGriffO Offline
                  OriginalGriffO Offline
                  OriginalGriff
                  wrote on last edited by
                  #8

                  I figured it was. How did he escape from Q&A? :laugh:

                  Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."

                  "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
                  "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

                  L 1 Reply Last reply
                  0
                  • OriginalGriffO OriginalGriff

                    I figured it was. How did he escape from Q&A? :laugh:

                    Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."

                    L Offline
                    L Offline
                    Lost User
                    wrote on last edited by
                    #9

                    OriginalGriff wrote:

                    How did he escape from Q&A?

                    Some fool posted a link to the forums. :sigh:

                    The best things in life are not things.

                    1 Reply Last reply
                    0
                    • H Haanaza

                      full project for the sql application and C#

                      L Offline
                      L Offline
                      Lost User
                      wrote on last edited by
                      #10

                      If you do not even know the basics of Sql and C#, how will a project make sense to you? How can you even think of learning technologies by investigating code. It may help you when you have a basic understand of the technology, but not at the initial stage. Get hold of some good books that teach you SQL and C#, learn and understand the basic concepts, write some code and compile it yourself. When it doesn't work the way it should, debug your code and fix it, repeat this for each important concept that you learn. That way, you'll learn a lot more than what you can think of learning from code written by someone else.

                      1 Reply Last reply
                      0
                      • L Lost User

                        Stop posting these messages; nobody is going to give a you a full project for anything.

                        The best things in life are not things.

                        P Offline
                        P Offline
                        Pradeep Shukla 0
                        wrote on last edited by
                        #11

                        Hi, You can download code from wrox.com. They have complete code available for download for their books. That could help you to find a complete running DB application. with kudos, Pradeep

                        L 1 Reply Last reply
                        0
                        • P Pradeep Shukla 0

                          Hi, You can download code from wrox.com. They have complete code available for download for their books. That could help you to find a complete running DB application. with kudos, Pradeep

                          L Offline
                          L Offline
                          Lost User
                          wrote on last edited by
                          #12

                          Why do I need to know this?

                          Unrequited desire is character building.

                          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