I used to enjoy working with Oracle databases, but the horrible pricing and high need for dba maintenance was always discomforting. Switch for a while to MSSQL, but then the market for Windows apps disappeared. Have been using mySQL with very little sort of DB satisfaction. Now I don't know why anyone would not choose PostgreSQL for almost any project. Oracle is a bad apple, making money with methods aking to extorti…
>Now I don't know why anyone would not choose PostgreSQL for almost any project. No offense but people who make statements like this clearly don't know much about the current state of databases. PostgreSQL is pretty bad in many areas compared to the newer databases e.g. ease of clustering and sharding, developer friendliness, JSON support, tool support etc. It's great as a replacement for a typical RDBMS but if you'r…
Oracle makes move to kill open source MySQL
71–80 of 97 posts
Re: Oracle makes move to kill open source MySQL
#72Earlier quoted context omitted.
Well, personally, my favourite database is SQLite. I don't build large apps, although for many-read-few-write-type sites SQLite isn't so bad.
SQLite is awesome too. I use it whenever I can.
And also the docs are much more readable to me than for MySQL.
Re: Oracle makes move to kill open source MySQL
#73Earlier quoted context omitted.
>Now I don't know why anyone would not choose PostgreSQL for almost any project. No offense but people who make statements like this clearly don't know much about the current state of databases. PostgreSQL is pretty bad in many areas compared to the newer databases e.g. ease of clustering and sharding, developer friendliness, JSON support, tool support etc. It's great as a replacement for a typical RDBMS but if you'r…
Not sure what you mean by lack of developer friendliness and what specific tools you find it lacking. Postgres is a great choice for new startups that need an RDBMS and like having schema for their data. There is built-in JSON support in upcoming 9.2 release and most JSON-to-schema mapping should be done in application anyway. Sharding is easy to do at application level; you would lose ability to do certain queries a…
Also all of your arguments are "push to the application layer". Well my point is that with most of the newer databases you don't have to reimplement the wheel.
Re: Oracle makes move to kill open source MySQL
#74It seems Oracle is on a trend to kill everything open source they've acquired from Sun. Java seems to be the only one left, and it would've happened already if they won the trial with Google, but I'm sure they'll do something equally dumb in the future to kill finally Java, too.
There are other open source projects at Oracle that are still "alive". Like Netbeans.
Re: Oracle makes move to kill open source MySQL
#75It seems Oracle is on a trend to kill everything open source they've acquired from Sun. Java seems to be the only one left, and it would've happened already if they won the trial with Google, but I'm sure they'll do something equally dumb in the future to kill finally Java, too.
Q: Why hasn't Oracle ruined Virtualbox yet?
A: Because they're going in alphabetical order.
Re: Oracle makes move to kill open source MySQL
#76Earlier quoted context omitted.
MySQL and Java don't affect me much personally, but I think the way they've handled Solaris is a real tragedy for the industry. Larry is the new Bill. I blame Jonathan.
What's happening to Solaris ? It is still open and available for download at http://opensolaris.org . It just isn't being supported by Oracle anymore since they are focused on Oracle Linux.
Re: Oracle makes move to kill open source MySQL
#77I used to enjoy working with Oracle databases, but the horrible pricing and high need for dba maintenance was always discomforting. Switch for a while to MSSQL, but then the market for Windows apps disappeared. Have been using mySQL with very little sort of DB satisfaction. Now I don't know why anyone would not choose PostgreSQL for almost any project. Oracle is a bad apple, making money with methods aking to extorti…
>Now I don't know why anyone would not choose PostgreSQL for almost any project. No offense but people who make statements like this clearly don't know much about the current state of databases. PostgreSQL is pretty bad in many areas compared to the newer databases e.g. ease of clustering and sharding, developer friendliness, JSON support, tool support etc. It's great as a replacement for a typical RDBMS but if you'r…
Which RDBMS do you have in mind ?
Re: Oracle makes move to kill open source MySQL
#78Earlier quoted context omitted.
>Now I don't know why anyone would not choose PostgreSQL for almost any project. No offense but people who make statements like this clearly don't know much about the current state of databases. PostgreSQL is pretty bad in many areas compared to the newer databases e.g. ease of clustering and sharding, developer friendliness, JSON support, tool support etc. It's great as a replacement for a typical RDBMS but if you'r…
> ease of clustering and sharding, developer friendliness, JSON support, tool support etc. Which RDBMS do you have in mind ?
The fact is that just like one programming language doesn't satisfy all use cases. Neither does one database. So maybe PostgreSQL 'supporters' should stop trying to claim it is perfect for everyone.
Re: Oracle makes move to kill open source MySQL
#79Earlier quoted context omitted.
Disclaimer: It's been a while since I tried to use SQLite for anything. I've never really felt that it was actually easier to use than a client/server DBMS. I can imagine that it's good for some kinds of embedded applications, but for normal web applications I don't see any improvement in usability. Juggling files is not any easier than setting up a connection. And there were always annoyances associated with the sim…
1. With the PDO (or any ORM) setting up and "using" SQLite is as easy as any other database. 2. There are several really nice front-ends to SQlite, along with the phpmyadmin like app for SQlite. Like MySQL you'll never have to use the command line (for most operations). 3. SQLite is now included with just about every scripting language (except MS' langs - where it's just a matter of downloading the app and an ODBC dr…
Re: Oracle makes move to kill open source MySQL
#80Earlier quoted context omitted.
I still wonder why SQLite isn't used more. Granted for busy large sites/applications SQLite is the wrong tool. But most sites using MySQL are small.
SQLite is not a real solution for anything needing to support more than one user at a time. It's fine for things like managing bookmarks within firefox, but not for a full relational database replacement. The write access is single threaded (at least last time I used it).