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. Other Discussions
  3. The Weird and The Wonderful
  4. Best Practices turned into Coding Horrors.

Best Practices turned into Coding Horrors.

Scheduled Pinned Locked Moved The Weird and The Wonderful
database
50 Posts 19 Posters 1 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.
  • P Paulo Zemek

    It is a well known good practice to use StringBuilders instead of doing many string concatenations. Yet, I got really impressed when I saw a document telling to replace things like this:

    private const string SQL =
    "SELECT " +
    " ID, " +
    " NAME, " +
    " BIRTHDAY " +
    "FROM " +
    " TABLE " +
    "WHERE " +
    " NAME LIKE @PARAM";

    By creating the StringBuilder everytime in the method where the SQL was being used. Maybe I am wrong :doh: , but I really believe consts aren't doing bad string concatenations all the time.

    R Offline
    R Offline
    RafagaX
    wrote on last edited by
    #13

    Well, best practices are not always the best... :doh:

    CEO at: - Rafaga Systems - Para Facturas - Modern Components for the moment...

    C P 2 Replies Last reply
    0
    • B Brady Kelly

      I see little reason to not use a parametrized query like that. OK, if it is static enough top define a const, there is a small case against storing all your query code in the binary instead of the more accessible DB server, but not much else of a case.

      R Offline
      R Offline
      R Giskard Reventlov
      wrote on last edited by
      #14

      It's not the end of the world, certainly; my preference is to keep databasey stuff in the database. It's just neater; besides, all those +++ and line breaks: FUGLY!!!

      "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair. nils illegitimus carborundum me, me, me

      B 1 Reply Last reply
      0
      • R R Giskard Reventlov

        But why would anyone write it like that in the first place??? It's horrible. And let's not even begin to talk about why it should be a stored procedure...

        "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair. nils illegitimus carborundum me, me, me

        J Offline
        J Offline
        jschell
        wrote on last edited by
        #15

        mark merrens wrote:

        But why would anyone write it like that in the first place???

        How else are you going to code a string which contains SQL? One really long line?

        mark merrens wrote:

        And let's not even begin to talk about why it should be a stored procedure...

        Presumably you mean it should be a proc instead. Perhaps. But some procs might be rather long when expressed as a SQL string - so same problem.

        1 Reply Last reply
        0
        • P PIEBALDconsult

          Indeed, not a candidate for StringBuilderhood. And I write it as

          private const string SQL =
          @"
          SELECT ID
          , NAME
          , BIRTHDAY
          FROM TABLE
          WHERE NAME LIKE @PARAM
          " ;

          so it prints out nice in error messages [added>>] and I can very easily copy/paste it between a code file and SSMS or other SQL executor.

          J Offline
          J Offline
          jschell
          wrote on last edited by
          #16

          PIEBALDconsult wrote:

          And I write it as

          So to be clear your code looks like the following? And this format is 'better'?

          namespace mystuff.otherStuff
          {
          //---------------------------------------------------------------------------------------
          /// /// This is where I do database stuff
          ///
          //---------------------------------------------------------------------------------------
          public static class MyDbConstants
          {
          private const string SQL1 =
          @"
          SELECT ID
          , NAME
          , BIRTHDAY
          FROM TABLE
          WHERE NAME LIKE @PARAM
          " ;

          private const string SQL2 =
          @"
          SELECT ID
          , NAME
          , BIRTHDAY
          FROM TABLE_OTHER
          WHERE NAME LIKE @PARAM
          " ;

          private const string SQL3 =
          @"
          SELECT ID
          , NAME
          , BIRTHDAY
          FROM TABLE_OTHER2
          WHERE NAME LIKE @PARAM
          " ;

          // 100 other like the above with increasing complexity.

          P B 2 Replies Last reply
          0
          • K KRucker

            The "Best Practice" is not to use string concatenation in a loop. The reason is that under the hood when concatinating two strings, a third string will be created large enough to bold both source strings. The source strings will be copied to that new string, the original string destroyed, then recreated and the contents of the temporary string copied into it, then the temporary string destroyed. The concatination that you are showing should be fine, unless it is being performed in a loop.

            J Offline
            J Offline
            jschell
            wrote on last edited by
            #17

            KRucker wrote:

            The "Best Practice" is not to use string concatenation in a loop.

            It still depends on what the "string" is. And it also depends on the impact of the code under use. Most of the time a builder is pointless because it does nothing but obfuscate the code.

            1 Reply Last reply
            0
            • R RafagaX

              Well, best practices are not always the best... :doh:

              CEO at: - Rafaga Systems - Para Facturas - Modern Components for the moment...

              C Offline
              C Offline
              Chad3F
              wrote on last edited by
              #18

              "Best practices" are "at best" someone's opinion. ;) In some cases that opinion may be shared by many, but that doesn't always make it right. After all, at one time, how many people had the opinion the world was flat and the best practice was not to sail too far out? While some things that are considered a best practice I do see reason to use over alternatives, I really don't like the idea of having an arbitrary list of "do these things for best results". They (you know, the "they" that killed Kenny) might as well call it "'boxes to use and not think outside of' practices" instead of "best practices".

              J K 2 Replies Last reply
              0
              • J jschell

                PIEBALDconsult wrote:

                And I write it as

                So to be clear your code looks like the following? And this format is 'better'?

                namespace mystuff.otherStuff
                {
                //---------------------------------------------------------------------------------------
                /// /// This is where I do database stuff
                ///
                //---------------------------------------------------------------------------------------
                public static class MyDbConstants
                {
                private const string SQL1 =
                @"
                SELECT ID
                , NAME
                , BIRTHDAY
                FROM TABLE
                WHERE NAME LIKE @PARAM
                " ;

                private const string SQL2 =
                @"
                SELECT ID
                , NAME
                , BIRTHDAY
                FROM TABLE_OTHER
                WHERE NAME LIKE @PARAM
                " ;

                private const string SQL3 =
                @"
                SELECT ID
                , NAME
                , BIRTHDAY
                FROM TABLE_OTHER2
                WHERE NAME LIKE @PARAM
                " ;

                // 100 other like the above with increasing complexity.

                P Offline
                P Offline
                PIEBALDconsult
                wrote on last edited by
                #19

                No, I don't use consts for SQL.

                J 1 Reply Last reply
                0
                • R RafagaX

                  Well, best practices are not always the best... :doh:

                  CEO at: - Rafaga Systems - Para Facturas - Modern Components for the moment...

                  P Offline
                  P Offline
                  PIEBALDconsult
                  wrote on last edited by
                  #20

                  It's best to avoid "best practices".

                  1 Reply Last reply
                  0
                  • R R Giskard Reventlov

                    It's not the end of the world, certainly; my preference is to keep databasey stuff in the database. It's just neater; besides, all those +++ and line breaks: FUGLY!!!

                    "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair. nils illegitimus carborundum me, me, me

                    B Offline
                    B Offline
                    Brady Kelly
                    wrote on last edited by
                    #21

                    Yes, he could hide the queries in resources files, not out in public code.

                    1 Reply Last reply
                    0
                    • J jschell

                      PIEBALDconsult wrote:

                      And I write it as

                      So to be clear your code looks like the following? And this format is 'better'?

                      namespace mystuff.otherStuff
                      {
                      //---------------------------------------------------------------------------------------
                      /// /// This is where I do database stuff
                      ///
                      //---------------------------------------------------------------------------------------
                      public static class MyDbConstants
                      {
                      private const string SQL1 =
                      @"
                      SELECT ID
                      , NAME
                      , BIRTHDAY
                      FROM TABLE
                      WHERE NAME LIKE @PARAM
                      " ;

                      private const string SQL2 =
                      @"
                      SELECT ID
                      , NAME
                      , BIRTHDAY
                      FROM TABLE_OTHER
                      WHERE NAME LIKE @PARAM
                      " ;

                      private const string SQL3 =
                      @"
                      SELECT ID
                      , NAME
                      , BIRTHDAY
                      FROM TABLE_OTHER2
                      WHERE NAME LIKE @PARAM
                      " ;

                      // 100 other like the above with increasing complexity.

                      B Offline
                      B Offline
                      Brady Kelly
                      wrote on last edited by
                      #22

                      Looks pretty damned neat to me. I always write out my SQL with each identifier or keyword on its own line. Much easier to read and diagnose.

                      J 1 Reply Last reply
                      0
                      • R R Giskard Reventlov

                        But why would anyone write it like that in the first place??? It's horrible. And let's not even begin to talk about why it should be a stored procedure...

                        "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair. nils illegitimus carborundum me, me, me

                        B Offline
                        B Offline
                        BobJanova
                        wrote on last edited by
                        #23

                        What's wrong with it? I mean, it's simple enough I'd put it on one line, but I don't see anything in principle wrong with putting it on several, and as C# doesn't have multi-line string constants, you have to write it as it is there. Edit: apparently @ strings will let you do multi-line constants. Making code a stored procedure hides it away from the developer and makes it harder to see. Select queries should almost never be in one because it makes you go and look at the database to find out what the code is doing ... or, to put it another way, those queries are part of the business logic and should be in the code. But I have a somewhat old fashioned view of the database as essentially a minimally intelligent data store.

                        R E 2 Replies Last reply
                        0
                        • P Paulo Zemek

                          You are talking about the real Best Practice. But the "Best Practice" is to replace any string concatenation, even in consts, by a StringBuilder.

                          B Offline
                          B Offline
                          BobJanova
                          wrote on last edited by
                          #24

                          const string sql = "select stuff "+
                          "from table"; // Best practice doesn't apply to consts

                          1 Reply Last reply
                          0
                          • B BobJanova

                            What's wrong with it? I mean, it's simple enough I'd put it on one line, but I don't see anything in principle wrong with putting it on several, and as C# doesn't have multi-line string constants, you have to write it as it is there. Edit: apparently @ strings will let you do multi-line constants. Making code a stored procedure hides it away from the developer and makes it harder to see. Select queries should almost never be in one because it makes you go and look at the database to find out what the code is doing ... or, to put it another way, those queries are part of the business logic and should be in the code. But I have a somewhat old fashioned view of the database as essentially a minimally intelligent data store.

                            R Offline
                            R Offline
                            R Giskard Reventlov
                            wrote on last edited by
                            #25

                            I like the database to take that strain: it's what it is there for, after all. And I never, ever put SQL in code: I either use a view or a stored procedure.

                            "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair. nils illegitimus carborundum me, me, me

                            J 1 Reply Last reply
                            0
                            • P Paulo Zemek

                              It is a well known good practice to use StringBuilders instead of doing many string concatenations. Yet, I got really impressed when I saw a document telling to replace things like this:

                              private const string SQL =
                              "SELECT " +
                              " ID, " +
                              " NAME, " +
                              " BIRTHDAY " +
                              "FROM " +
                              " TABLE " +
                              "WHERE " +
                              " NAME LIKE @PARAM";

                              By creating the StringBuilder everytime in the method where the SQL was being used. Maybe I am wrong :doh: , but I really believe consts aren't doing bad string concatenations all the time.

                              P Offline
                              P Offline
                              Pete OHanlon
                              wrote on last edited by
                              #26

                              Unless you're talking about a really old (.NET 1) version of the compiler, this is translated internally into the following il:

                              .field private static literal string SQL = string('SELECT ID, NAME, BIRTHDAY FROM TABLE WHERE NAME LIKE @PARAM')

                              As you can see, there's no concatenation in there at all.

                              I was brought up to respect my elders. I don't respect many people nowadays.
                              CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

                              P B 2 Replies Last reply
                              0
                              • P Pete OHanlon

                                Unless you're talking about a really old (.NET 1) version of the compiler, this is translated internally into the following il:

                                .field private static literal string SQL = string('SELECT ID, NAME, BIRTHDAY FROM TABLE WHERE NAME LIKE @PARAM')

                                As you can see, there's no concatenation in there at all.

                                I was brought up to respect my elders. I don't respect many people nowadays.
                                CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

                                P Offline
                                P Offline
                                Paulo Zemek
                                wrote on last edited by
                                #27

                                I know there is no concatenation. Any const must be resolved at compile time. When I said that I "think it optimizes" I put the :doh: because it is obvious.

                                P 1 Reply Last reply
                                0
                                • P Pete OHanlon

                                  Unless you're talking about a really old (.NET 1) version of the compiler, this is translated internally into the following il:

                                  .field private static literal string SQL = string('SELECT ID, NAME, BIRTHDAY FROM TABLE WHERE NAME LIKE @PARAM')

                                  As you can see, there's no concatenation in there at all.

                                  I was brought up to respect my elders. I don't respect many people nowadays.
                                  CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

                                  B Offline
                                  B Offline
                                  BobJanova
                                  wrote on last edited by
                                  #28

                                  Didn't even the 1.0 compiler do that with string constants?

                                  K 1 Reply Last reply
                                  0
                                  • P Paulo Zemek

                                    I know there is no concatenation. Any const must be resolved at compile time. When I said that I "think it optimizes" I put the :doh: because it is obvious.

                                    P Offline
                                    P Offline
                                    Pete OHanlon
                                    wrote on last edited by
                                    #29

                                    That was meant for you to beat them round the head with, rather than for your benefit.

                                    I was brought up to respect my elders. I don't respect many people nowadays.
                                    CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

                                    1 Reply Last reply
                                    0
                                    • B Brady Kelly

                                      Looks pretty damned neat to me. I always write out my SQL with each identifier or keyword on its own line. Much easier to read and diagnose.

                                      J Offline
                                      J Offline
                                      jschell
                                      wrote on last edited by
                                      #30

                                      Brady Kelly wrote:

                                      Looks pretty damned neat to me.

                                      I don't know what you are referring to. I have no problem with multi-line SQL constructs.

                                      1 Reply Last reply
                                      0
                                      • P PIEBALDconsult

                                        No, I don't use consts for SQL.

                                        J Offline
                                        J Offline
                                        jschell
                                        wrote on last edited by
                                        #31

                                        PIEBALDconsult wrote:

                                        No, I don't use consts for SQL.

                                        Then we have a term definition problem because I responded to what you said... "And I [PIEBALDconsult] write it as ...private const string SQL"

                                        P 1 Reply Last reply
                                        0
                                        • C Chad3F

                                          "Best practices" are "at best" someone's opinion. ;) In some cases that opinion may be shared by many, but that doesn't always make it right. After all, at one time, how many people had the opinion the world was flat and the best practice was not to sail too far out? While some things that are considered a best practice I do see reason to use over alternatives, I really don't like the idea of having an arbitrary list of "do these things for best results". They (you know, the "they" that killed Kenny) might as well call it "'boxes to use and not think outside of' practices" instead of "best practices".

                                          J Offline
                                          J Offline
                                          jschell
                                          wrote on last edited by
                                          #32

                                          Chad3F wrote:

                                          After all, at one time, how many people had the opinion the world was flat and the best practice was not to sail too far out?

                                          At the time when people did in fact think the world was flat then in fact is was foolhardy to sail too far out because one was very likely to not return. Which was a loss both in lives and commerce.

                                          C 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