Slashdot Mirror


IBM, MS Critique MySQL

magellan writes "InfoWorld has an article reporting how both IBM and Microsoft are dissing MySQL. While it is understandable from Microsoft, it is interesting that IBM, who often claims to be a defender of Open Source Software, would be so negative. Sun Microsystems and Yahoo are quoted as providing positive opinions on MySQL." On the credit site for MySQL, though, Bingo Foo writes "MySQL has finally answered its detractors who complained about its lack of transactions. A press release today reveals that InnoDB is now fully integrated with the stock MySQL product, allowing ACID-compliant transactions, rollback, and crash recovery. Let the religious wars begin!"

7 of 485 comments (clear)

  1. fp by leerpm · · Score: -1, Troll

    Just now they have finally implemented transactions? There remains much work to be done..

  2. Holy shit by Anonymous Coward · · Score: -1, Troll

    I just discovered that my two female roommates have been mixing crushed birth control bills into my food for over a year now. They said that the female hormones it contains helped control my behavior. Well it worked, but as a side effect I now have some small boobs. They say they're sorry about the side effects. Are apologies enough in this case? What should I do?

  3. In other news.... by mwjlewis · · Score: 0, Troll
    In other news. Repeated exposure to the Sun, can cause skin cancer.

    Something Free- is always going to be put down by something that another company can make money off of.

    --
    www.oobersworld.com - For those that ride.
  4. The thing is... by Anonymous Coward · · Score: -1, Troll

    ...they are right. MySQL sucks!

  5. Re:Trojan or troll by Anonymous Coward · · Score: -1, Troll

    you are one mother fucking cave troll man.

    go back to where you came from.

  6. Well it doest by Anonymous Coward · · Score: -1, Troll

    Who wants MySQL?
    What is a SQL?
    Its Like SQL, but this is MY SQL.

    I don't want your SQL. I want Porsques's

  7. Re:What about SUB-SELECTS? by ajs · · Score: 2, Troll
    Personally, I'd be happiest if MySQL never has sub-selects. When you're forced to work around the lack of sub-selects you are also forced to avoid one of the most costly and difficult-to-optmize features of modern relational databases.

    If they're there in a later release, I'll probably use them, but only because I'm lazy. Views are also one of the worst pigs ever created.

    Now, triggers I'm of two minds about. Simple triggered events (e.g. tbl1.col1 = f(tbl1.col2) where f is a basic, internal MySQL function) should be supported, no doubt about it. But, if what you want is to tie a program to updates, then I think an event model for external applications would be a much better way to go.

    However, if you're not of the "treat the database like hardware" camp that I'm in, you'll be happy to hear this:
    Internally, through a new .frm file format for table definitions, MySQL 4.0 lays the foundation for the new features of MySQL 4.1, such as nested subqueries, stored procedures, and foreign key integrity rules, which form the top of the wish list for many of our customers. Along with those, we will also include simpler additions, such as multi-table UPDATE statements.
    That's from the 4.0 "in a nutshell" page. 4.0 is currently in beta, though if previous MySQL releases are any indicator, don't expect it to be out of beta right away. They're pretty fanatical about stable releases.

    If you start converting now, I imagine you should be in good shape by the time 4.1 is out. Good luck!