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. The Lounge
  3. Good grief

Good grief

Scheduled Pinned Locked Moved The Lounge
pythondatabasecomfunctionallearning
34 Posts 22 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.
  • M Marc Clifton

    I'm debugging some legacy VB X| code to figure out why a report is crashing, and encountered this fragment of SQL code: e.TerminalType *= f.TerminalType :omg: The last time I encountered a left outer join specified in that way was probably 20 years ago. Marc

    Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny

    T Offline
    T Offline
    Tim Carmichael
    wrote on last edited by
    #12

    Marc Clifton wrote:

    e.TerminalType *= f.TerminalType

    I've been forced to use that format when writing for older Oracle systems. So, it may not be the language that is/was the issue, it may be the data source. The implication being.. such a join may be seen in other languages like C, C#, etc.

    1 Reply Last reply
    0
    • I Ian Shlasko

      Nah, VB was, for a while, good for a very specific purpose: Writing simple GUI tools and database frontends quickly, without having to worry (much) about destabilizing the rest of the system or leaking out all the RAM with a badly-written MFC app. It was never meant for high-end computing or commercial applications, though I've seen it used for both. Just like Excel... It's an amazing application if you use it as a spreadsheet, or for prototyping. Once you have tons of VBA macros and entire applications written in it, you'll want to shoot yourself. Been there, too.

      Proud to have finally moved to the A-Ark. Which one are you in?
      Author of the Guardians Saga (Sci-Fi/Fantasy novels)

      G Offline
      G Offline
      glennPattonPub
      wrote on last edited by
      #13

      Quote:

      It was never meant for high-end computing or commercial applications,

      And yet it is used for both, I know of at least one application where when it was found the reaction was "Oh No, change it!" Followed by "Well it has worked reliably for the X years, trust us you don't want to mess with this code as it is too wide spread to make a fix all update". It is used in flight control systems of a very well known heavy lift helicopter.:~

      I 1 Reply Last reply
      0
      • M Marc Clifton

        I'm debugging some legacy VB X| code to figure out why a report is crashing, and encountered this fragment of SQL code: e.TerminalType *= f.TerminalType :omg: The last time I encountered a left outer join specified in that way was probably 20 years ago. Marc

        Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny

        Sander RosselS Offline
        Sander RosselS Offline
        Sander Rossel
        wrote on last edited by
        #14

        I recently encountered ( +) in an Oracle query. It's the same thing, except this query was written a week earlier... :sigh: I had never seen that syntax by the way, not in Oracle or SQL Server :D

        Read my (free) ebook Object-Oriented Programming in C# Succinctly. Visit my blog at Sander's bits - Writing the code you need. Or read my articles here on CodeProject.

        Simplicity is prerequisite for reliability. — Edsger W. Dijkstra

        Regards, Sander

        J 1 Reply Last reply
        0
        • G glennPattonPub

          Quote:

          It was never meant for high-end computing or commercial applications,

          And yet it is used for both, I know of at least one application where when it was found the reaction was "Oh No, change it!" Followed by "Well it has worked reliably for the X years, trust us you don't want to mess with this code as it is too wide spread to make a fix all update". It is used in flight control systems of a very well known heavy lift helicopter.:~

          I Offline
          I Offline
          Ian Shlasko
          wrote on last edited by
          #15

          glennPattonWorking wrote:

          It is used in flight control systems of a very well known heavy lift helicopter.

          :wtf:

          Proud to have finally moved to the A-Ark. Which one are you in?
          Author of the Guardians Saga (Sci-Fi/Fantasy novels)

          G 1 Reply Last reply
          0
          • D Dan Neely

            Ian Shlasko wrote:

            Just like Excel... It's an amazing application if you use it as a spreadsheet, or for prototyping. Once you have tons of VBA macros and entire applications written in it, you'll want to shoot yourself. Been there, too.

            Fortunately(?) by the time your Excel turns into exHell it'll be slow enough that the bullet won't be able to break your skin. I had one of those too, as an initial proof of concept I ported the big nasty data mangling step to C# and called it from the VBA using COM (with was a cluster elephant in and of itself). It dropped the run time on our worst data set from ~6 hours to 45 seconds. Of which ~30 were spent scraping the spreadsheet and sending it over COM, 15 were spent by C# to do the data mangling, and <1 was spent to write the much smaller data set back to the spreadsheet. The truly amazing bit was that the intern/very junior dev (not sure if he went full time before or after writing it) managed to get the >1000 lines of very complex logic copy pasta with about 8 intend levels and gotos to short circuit another half dozen working and fully debugged. :omg:

            Did you ever see history portrayed as an old man with a wise brow and pulseless heart, waging all things in the balance of reason? Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful? --Zachris Topelius Training a telescope on one’s own belly button will only reveal lint. You like that? You go right on staring at it. I prefer looking at galaxies. -- Sarah Hoyt

            I Offline
            I Offline
            Ian Shlasko
            wrote on last edited by
            #16

            Yeah, I could tell some horror stories about a portfolio management system written in Excel... But given that this is a public forum and I'm using my real name, I think I'll refrain :)

            Proud to have finally moved to the A-Ark. Which one are you in?
            Author of the Guardians Saga (Sci-Fi/Fantasy novels)

            F 1 Reply Last reply
            0
            • I Ian Shlasko

              glennPattonWorking wrote:

              It is used in flight control systems of a very well known heavy lift helicopter.

              :wtf:

              Proud to have finally moved to the A-Ark. Which one are you in?
              Author of the Guardians Saga (Sci-Fi/Fantasy novels)

              G Offline
              G Offline
              glennPattonPub
              wrote on last edited by
              #17

              When I was include on the Email chain it was truely a :wtf: moment. what better (or worse) it was using VB5!!

              1 Reply Last reply
              0
              • I Ian Shlasko

                Nah, VB was, for a while, good for a very specific purpose: Writing simple GUI tools and database frontends quickly, without having to worry (much) about destabilizing the rest of the system or leaking out all the RAM with a badly-written MFC app. It was never meant for high-end computing or commercial applications, though I've seen it used for both. Just like Excel... It's an amazing application if you use it as a spreadsheet, or for prototyping. Once you have tons of VBA macros and entire applications written in it, you'll want to shoot yourself. Been there, too.

                Proud to have finally moved to the A-Ark. Which one are you in?
                Author of the Guardians Saga (Sci-Fi/Fantasy novels)

                Kornfeld Eliyahu PeterK Offline
                Kornfeld Eliyahu PeterK Offline
                Kornfeld Eliyahu Peter
                wrote on last edited by
                #18

                Ian Shlasko wrote:

                It was never meant for high-end computing or commercial applications

                Are you sure? Microsoft had - 16-17 years ago - DNA Labs all over the word, where Microsoft gave the help to port enterprise-scale applications to VB6... My boss felt for it and I spend there half a year and cursed for an other two, before we moved back to c++...

                Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.

                "It never ceases to amaze me that a spacecraft launched in 1977 can be fixed remotely from Earth." ― Brian Cox

                I 1 Reply Last reply
                0
                • M Marc Clifton

                  I'm debugging some legacy VB X| code to figure out why a report is crashing, and encountered this fragment of SQL code: e.TerminalType *= f.TerminalType :omg: The last time I encountered a left outer join specified in that way was probably 20 years ago. Marc

                  Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny

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

                  ... aaand back to therapy... :sigh:

                  1 Reply Last reply
                  0
                  • F F ES Sitecore

                    Mika Wendelius wrote:

                    I think we did have colour TV though ;)

                    With a remote control that was attached by a long wire :)

                    F Offline
                    F Offline
                    Foothill
                    wrote on last edited by
                    #20

                    That's why you have kids. Back then, they were the remote control.

                    if (Object.DividedByZero == true) { Universe.Implode(); } Meus ratio ex fortis machina. Simplicitatis de formae ac munus. -Foothill, 2016

                    1 Reply Last reply
                    0
                    • I Ian Shlasko

                      Yeah, I could tell some horror stories about a portfolio management system written in Excel... But given that this is a public forum and I'm using my real name, I think I'll refrain :)

                      Proud to have finally moved to the A-Ark. Which one are you in?
                      Author of the Guardians Saga (Sci-Fi/Fantasy novels)

                      F Offline
                      F Offline
                      Foothill
                      wrote on last edited by
                      #21

                      Don't get me started on having very important calculations written in VBA, I have known my fair share of Actuaries.

                      if (Object.DividedByZero == true) { Universe.Implode(); } Meus ratio ex fortis machina. Simplicitatis de formae ac munus. -Foothill, 2016

                      1 Reply Last reply
                      0
                      • Sander RosselS Sander Rossel

                        I recently encountered ( +) in an Oracle query. It's the same thing, except this query was written a week earlier... :sigh: I had never seen that syntax by the way, not in Oracle or SQL Server :D

                        Read my (free) ebook Object-Oriented Programming in C# Succinctly. Visit my blog at Sander's bits - Writing the code you need. Or read my articles here on CodeProject.

                        Simplicity is prerequisite for reliability. — Edsger W. Dijkstra

                        Regards, Sander

                        J Offline
                        J Offline
                        Jorgen Andersson
                        wrote on last edited by
                        #22

                        The *= syntax is Sybase, SQL Server until 2000 and Access

                        Wrong is evil and must be defeated. - Jeff Ello

                        1 Reply Last reply
                        0
                        • F F ES Sitecore

                          Mika Wendelius wrote:

                          I think we did have colour TV though ;)

                          With a remote control that was attached by a long wire :)

                          W Offline
                          W Offline
                          Wendelius
                          wrote on last edited by
                          #23

                          Exactly, and hair metal. I remember having hair metal back then. These days it's only plain metal :rolleyes:

                          D 1 Reply Last reply
                          0
                          • Kornfeld Eliyahu PeterK Kornfeld Eliyahu Peter

                            Ian Shlasko wrote:

                            It was never meant for high-end computing or commercial applications

                            Are you sure? Microsoft had - 16-17 years ago - DNA Labs all over the word, where Microsoft gave the help to port enterprise-scale applications to VB6... My boss felt for it and I spend there half a year and cursed for an other two, before we moved back to c++...

                            Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.

                            I Offline
                            I Offline
                            Ian Shlasko
                            wrote on last edited by
                            #24

                            Kornfeld Eliyahu Peter wrote:

                            Microsoft gave the help to port enterprise-scale applications to VB6...

                            Kornfeld Eliyahu Peter wrote:

                            My boss felt for it

                            And there's your problem. As professional geeks, it's OUR job to look at a tool/language/framework and see how it should be used. This is how it's supposed to happen: Company X: "This is awesome and can do everything!" Your Boss: "This is awesome and can do everything, and I'm not saying that because they gave me a bribe completely non-conditional gift! Let's use this for everything!" You: "This is a horrible idea, and if we actually use this, we'll probably all end up getting fired/bankrupted" Your Boss: "Oh, ok then. I gotta go. I have a meeting with Company Y."

                            Proud to have finally moved to the A-Ark. Which one are you in?
                            Author of the Guardians Saga (Sci-Fi/Fantasy novels)

                            Kornfeld Eliyahu PeterK 1 Reply Last reply
                            0
                            • M Marc Clifton

                              I'm debugging some legacy VB X| code to figure out why a report is crashing, and encountered this fragment of SQL code: e.TerminalType *= f.TerminalType :omg: The last time I encountered a left outer join specified in that way was probably 20 years ago. Marc

                              Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny

                              M Offline
                              M Offline
                              Mark_Wallace
                              wrote on last edited by
                              #25

                              I never did that myself, even though it seemed to be all the rage. But it's normal for common coding conventions to be superseded by others (most of which are not genuinely better; just different), and for the superseded conventions to be reviled. It's a "The Winner Writes the History Books" thing.

                              I wanna be a eunuchs developer! Pass me a bread knife!

                              1 Reply Last reply
                              0
                              • I Ian Shlasko

                                Kornfeld Eliyahu Peter wrote:

                                Microsoft gave the help to port enterprise-scale applications to VB6...

                                Kornfeld Eliyahu Peter wrote:

                                My boss felt for it

                                And there's your problem. As professional geeks, it's OUR job to look at a tool/language/framework and see how it should be used. This is how it's supposed to happen: Company X: "This is awesome and can do everything!" Your Boss: "This is awesome and can do everything, and I'm not saying that because they gave me a bribe completely non-conditional gift! Let's use this for everything!" You: "This is a horrible idea, and if we actually use this, we'll probably all end up getting fired/bankrupted" Your Boss: "Oh, ok then. I gotta go. I have a meeting with Company Y."

                                Proud to have finally moved to the A-Ark. Which one are you in?
                                Author of the Guardians Saga (Sci-Fi/Fantasy novels)

                                Kornfeld Eliyahu PeterK Offline
                                Kornfeld Eliyahu PeterK Offline
                                Kornfeld Eliyahu Peter
                                wrote on last edited by
                                #26

                                Almost perfect dialog...except the last line... (and 18 years ago a was pretty fresh)

                                Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.

                                "It never ceases to amaze me that a spacecraft launched in 1977 can be fixed remotely from Earth." ― Brian Cox

                                I 1 Reply Last reply
                                0
                                • F F ES Sitecore

                                  Ian Shlasko wrote:

                                  It was never meant for ... commercial applications

                                  LOL says who? I've written many a commercial app and website using it, what else were we supposed to use? It's like anything, the second it is superseded all of a sudden people talk like it's rubbish and always was. When .net is superseded people will be slagging it off saying how garbage it was, how assembly binding via configuration and convention was a stupid idea and so on.

                                  K Offline
                                  K Offline
                                  kmoorevs
                                  wrote on last edited by
                                  #27

                                  I agree with you 100%! I'm not sure how the syntax of a join can be blamed on VB anyway??? :laugh:

                                  "Go forth into the source" - Neal Morse

                                  1 Reply Last reply
                                  0
                                  • I Ian Shlasko

                                    Nah, VB was, for a while, good for a very specific purpose: Writing simple GUI tools and database frontends quickly, without having to worry (much) about destabilizing the rest of the system or leaking out all the RAM with a badly-written MFC app. It was never meant for high-end computing or commercial applications, though I've seen it used for both. Just like Excel... It's an amazing application if you use it as a spreadsheet, or for prototyping. Once you have tons of VBA macros and entire applications written in it, you'll want to shoot yourself. Been there, too.

                                    Proud to have finally moved to the A-Ark. Which one are you in?
                                    Author of the Guardians Saga (Sci-Fi/Fantasy novels)

                                    pkfoxP Offline
                                    pkfoxP Offline
                                    pkfox
                                    wrote on last edited by
                                    #28

                                    :thumbsup:

                                    We can’t stop here, this is bat country - Hunter S Thompson RIP

                                    1 Reply Last reply
                                    0
                                    • Kornfeld Eliyahu PeterK Kornfeld Eliyahu Peter

                                      Almost perfect dialog...except the last line... (and 18 years ago a was pretty fresh)

                                      Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.

                                      I Offline
                                      I Offline
                                      Ian Shlasko
                                      wrote on last edited by
                                      #29

                                      Oh, the last line was just my way of saying "GOTO start" :)

                                      Proud to have finally moved to the A-Ark. Which one are you in?
                                      Author of the Guardians Saga (Sci-Fi/Fantasy novels)

                                      1 Reply Last reply
                                      0
                                      • M Marc Clifton

                                        I'm debugging some legacy VB X| code to figure out why a report is crashing, and encountered this fragment of SQL code: e.TerminalType *= f.TerminalType :omg: The last time I encountered a left outer join specified in that way was probably 20 years ago. Marc

                                        Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny

                                        V Offline
                                        V Offline
                                        V 0
                                        wrote on last edited by
                                        #30

                                        Quote:

                                        e.TerminalType *= f.TerminalType

                                        Isn't that just e.TerminalType = e.TerminalType * f.TerminalType ?

                                        V.

                                        (MQOTD rules and previous solutions)

                                        P 1 Reply Last reply
                                        0
                                        • F F ES Sitecore

                                          Ian Shlasko wrote:

                                          It was never meant for ... commercial applications

                                          LOL says who? I've written many a commercial app and website using it, what else were we supposed to use? It's like anything, the second it is superseded all of a sudden people talk like it's rubbish and always was. When .net is superseded people will be slagging it off saying how garbage it was, how assembly binding via configuration and convention was a stupid idea and so on.

                                          B Offline
                                          B Offline
                                          BryanFazekas
                                          wrote on last edited by
                                          #31

                                          F-ES Sitecore wrote:

                                          It's like anything, the second it is superseded all of a sudden people talk like it's rubbish and always was. When .net is superseded people will be slagging it off saying how garbage it was, how assembly binding via configuration and convention was a stupid idea and so on.

                                          Exactly. VB was a perfectly good tool that enabled businesses to get mission critical applications into production sooner than later. I read that a large chunk of VB6 applications are still in production today. [in 1981 I was told that COBOL was dead and it wasn't worth learning. Scary how much COBOL is still in production today, doing what it needs to do.] Were a lot of crap applications written in VB? Absolutely! But a lot of crap applications are now being written now in C#, Java, etc. And yes, the next generation will whine about how crappy C#, Java, etc. were. :sigh: Blaming the software for what people do with it is like blaming the hammer when you miss a nail and put a hole in the dry wall.

                                          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