分类: Mysql/postgreSQL
2008-02-12 13:42:00
书目
英文原名: MySQL® Tutorial
作者 : ,
出版商 : Sams Publishing
出版日期: November 04, 2003
ISBN : 0-672-32584-5
Pages : 300
简介
MySQL Tutorial 包含一系列短小,简练,目标性强的章节,每章都易学易消化,可独立阅读。主要包含了以下五个方面:
* 安装和配置
* 使用MYSQL
* 管理MYSQL
* 优化MYSQL
* MYSQL相关的API
本书的介绍:
里面有源码下载
其他的一些信息:.
本章主要内容:
MYSQL快速,稳定,它是免费软件也是商业软件,支持transactions, row-level locking,
foreign keys, subqueries, 一级 full text searching. 5.0将支持存储过程.
易于安装使用,对系统要求低
性能,价格,功能的最佳结合(具体请参见原文)。性能优越,价格便宜,稳定,易于使用。
MySQL 4.1 offers
· ACID-compliant transactions
· Cross-platform support
· Replication
· Support for huge tables and databases
· Full text search
· Subqueries
· Support for most SQL 92 syntax
MySQL does not currently include
· Views
· Stored procedures
· Triggers
长期以来MySQL 3.23
是最新版本,2003-04,MySQL
a,The InnoDB engine is ACID compliant, supporting transactions, foreign keys,
and row-level locking.
b,MySQL now uses a query cache, storing the results returned by queries for
later reuse and, hence, greatly improving performance for common queries.
c,Full-text indexing and searching, which were added in
d,MERGE tables now support INSERT and AUTO_INCREMENT.
e,The result sets from SELECT queries can now be merged with
f,You can now delete rows from multiple tables with a single DELETE
statement.
g,User privilege management has been refined. More privileges have been added
to give you a finer grain of control, and you can also now limit a user's
resource use.
h,You can now make changes to server configuration without having to restart
the server.
i,A new C language library, libmysqld, is now available to allow you to embed
MySQL servers in your programs.
j,Replication, which has been available since 3.23.15, has been improved in
various ways, mostly bug fixes. For example, you can now set up a slave using LOAD DATA FROM MASTER, rather than having to use mysqldump or a tool like mysqlsnapshot.
In 4.1, there are some additional improvements. The most important change is
the addition of subqueries and derived tables. You also get Unicode support,
support for OpenGIS geographical data storage, and a host of other minor
improvements.
目前公司所用的版本.
Version 5.1 should support foreign keys for all table types (among a host of other features). Views should be supported in one of the 5.x versions.
多数mysql 源码遵循GPL
GPL
If this does not suit your purposes—if, for
example, you want to modify MySQL and sell the modified binary without access
to the source code—you must purchase a commercial license from
One important note is that the MySQL documentation is not available under the GPL, but it can be printed for personal use.
Mysql基准
Mysql下载
1 Installing MySQL
2 Quick Tour