MySQL

The world's most popular open source database

Contact a MySQL Representative


  • MySQL.com
  • Developer Zone
  • Partners & Solutions
  • Customer Login
  • DevZone
  • Downloads
  • Documentation
  • Articles
  • Forums
  • Bugs
  • Forge
  • Blogs
 
  • Pages

    • About
  • Archives

    • March 2008
    • February 2008
    • December 2007
    • November 2007
    • October 2007
  • Categories

    • MySQL (13)
    • MySQL Official (5)
    • MySQL technical (2)



The data charmer
« Extra fun at the MySQL Conference and Expo 2008

db4free: Get a taste of Falcon without installing!

You must have heard about Falcon, the new transactional engine being developed in MySQL 6.0. And for all the buzz, you may want to have a look at that.
If you haven’t had time to download and install it, now you can give it a try, thanks to db4free, a free MySQL hosting service, created by Markus Popp.
db4free runs Falcon!
So, if you want to test Falcon today, get a (free) account on db4free and start hacking!
Be careful:

  • MySQL 6.0 is still alpha software!
  • The default storage engine in this db4free server is Falcon. When you create a new table, if you don’t specify an engine, you will create a Falcon table.

A sample session:


$ mysql -h db4free.net -u USER_NAME -pPASSWORD -P 3307 DB_NAME
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 125
Server version: 6.0.4-alpha-log MySQL Community Server (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql > create table t1 (id  int not null primary key, c char(20));
Query OK, 0 rows affected (0.15 sec)

mysql > show create table t1\G
*************************** 1. row ***************************
       Table: t1
Create Table: CREATE TABLE `t1` (
  `id` int(11) NOT NULL,
  `c` char(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=Falcon DEFAULT CHARSET=utf8
1 row in set (0.12 sec)

This entry was posted on Monday, March 31st, 2008 at 08:15 and is filed under MySQL. You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.

One Response to “db4free: Get a taste of Falcon without installing!”

  1. Pythian Group Blog Says:
    April 4th, 2008 at 19:21

    Log Buffer #91: a Carnival of the Vanities for DBAs…

    Welcome to the 91st edition of Log Buffer, the weekly review of database blogs.
    For a change, let’s begin with some PostgreSQL stuff. On Tending the Garden, Selena Deckelmann gives her retrospective thanks to those who attended and presented th…

The data charmer is proudly powered by WordPress MU running on Blogs.mysql.com.
Entries (RSS) and Comments (RSS).