|
5#
楼主 |
发表于 2007-10-15 11:18:23
|
只看该作者
注意:这一章中有关书籍和网站的列表内容我暂时没有翻译,有兴趣的读者可以看一下,容我把全书翻完后在细致的来做这些工作
1.3 为开发者准备的储存过程参考资料 已经介绍过MySQL5的储存程序在整个MySQL语言的演进过程中具有里程碑的意义。为了能够全神贯注于任何新技术的需要,技术用户需要大量的技术资料的支持,我们的目标是介绍尽可能全面资料来覆盖MySQL储存程序语言。
我们确信,无论如何你需要很多不同的帮助,所以我们在下面的章节中介绍了完整的书籍(作为其他MySQL技术的参考信息)或者社区支持和只需的新闻内容。在这些章节中我们将提供很多相关信息的概要。这些有极大作用的资源大多数都可以免费获得或以低廉的价格得到,你将在高MySQL开发体验上获得巨大的帮助
1.3.1 书 长期以来,O’Reilly的MySQL系列积累了大量的书籍。在此我们列出了一些我们认为MySQL储存程序开发者应该关心的书籍。当然也包括了其他出版社的书籍,请在O’Reilly OnLAMP 网站的MySQL区查看相关完整列表
(http://www.onlamp.com/onlamp/general/mysql.csp)
MySQL Stored Procedure Programming, by Guy Harrison with Steven Feuerstein
This is the book you are holding now (or maybe even viewing online). This book was designed to be a complete and comprehensive guide to the MySQL stored program language. However, this book does not attempt complete coverage of the MySQL server, the SQL language, or other programming languages that you might use with MySQL. Therefore, you might want to complement this book with one or more other topics from the O’Reilly catalog or evenheaven forbidfrom another publisher!
MySQL in a Nutshell, by Russell Dyer
This compact quick-reference manual covers the MySQL SQL language, utility programs, and APIs for Perl, PHP, and C. This book is the ideal companion for any MySQL user (O’Reilly).
Web Database Applications with PHP and MySQL, by Hugh Williams and David Lane
This is a comprehensive guide to creating web-based applications using PHP and MySQL. It covers PEAR (PHP Extension and Application Repository) and provides a variety of complete case studies (O’Reilly).
MySQL, by Paul DuBois
This classic referencenow in its third editionis a comprehensive reference to MySQL development and administration. The third edition includes prerelease coverage of MySQL 5.0, including some information about stored procedures, functions, and triggers (SAMS).
High Performance MySQL, by Jeremy Zawodny and Derek Balling
This book covers the construction of high-performance MySQL server environments, along with how you can tune applications to take advantage of these environments. The book focuses on optimization, benchmarking, backups, replication, indexing, and load balancing (O’Reilly).
MySQL Cookbook, by Paul DuBois
This cookbook provides quick and easily applied recipes for common MySQL problems ranging from program setup to table manipulation and transaction management to data import/export and web interaction (O’Reilly).
Pro MySQL, by Michael Krukenberg and Jay Pipes
This book covers many advanced MySQL topics, including index structure, internal architecture, replication, clustering, and new features in MySQL 5.0. Some coverage of stored procedures, functions, and triggers is included, although much of the discussion is based on early MySQL 5 beta versions (APress).
MySQL Design and Tuning, by Robert D. Schneider
This is a good source of information on advanced development and administration topics, with a focus on performance (MySQL Press).
SQL in a Nutshell, by Kevin Kline, et al.
MySQL stored procedures, functions, and triggers rely on the SQL language to interact with database tables. This is a reference to the SQL language as implemented in Oracle, SQL Server, DB2, and MySQL (O’Reilly).
Learning SQL, by Alan Beaulieu
This book provides an excellent entry point for those unfamiliar with SQL. It covers queries, grouping, sets, filtering, subqueries, joins, indexes, and constraints, along with exercises (O’Reilly).
1.3.2网络资源 网络上同样有大量关于MySQL程序员的极好的网站,包括一些关心储存过程的领域
当然我们于书籍相配套的网站上面也有更新和勘误表以及MySQL的信息,你也应该关心一下
MySQL
MySQL AB offers the most comprehensive collection of white papers, documentation, and forums on MySQL in general and MySQL stored programming in particular. Start at http://www.mysql.com. We outline some specific areas later.
MySQL Developer Zone
http://dev.mysql.com/ is the main entry point for MySQL programmers. From here you can easily access software downloads, online forums, white papers, documentation, and the bug-tracking system.
MySQL online documentation
The MySQL reference manualincluding sections on stored procedures, functions, and triggersis available online at http://dev.mysql.com/doc/. You can also download the manual in various formats from here, or you can order various selections in printed book format at http://dev.mysql.com/books/mysqlpress/index.html.
MySQL forums
MySQL forums are great places to discuss MySQL features with others in the MySQL community. The MySQL developers are also frequent participants in these forums. The general forum index can be found at http://forums.mysql.com/. The stored procedure forum includes discussions of both procedures and functions, and there is a separate forum for triggers.
MySQL blogs
There are many people blogging about MySQL nowadays, and MySQL has consolidated many of the most significant feeds on the Planet MySQL web site at http://www.planetmysql.org/.
MySQL stored routines library
Giuseppe Maxia initiated this routine library, which collects general-purpose MySQL 5 stored procedures and functions. The library is still young, but already there are some extremely useful routines available. For example, you will find routines that emulate arrays, automate repetitive tasks, and perform crosstab manipulations. Check it out at http://savannah.nongnu.org/projects/mysql-sr-lib/.
O’Reilly’s OnLAMP MySQL section
O’Reilly hosts the OnLAMP site, which is dedicated to the LAMP stack (Linux, Apache, MySQL, PHP/Perl/Python) of which MySQL is such an important part. OnLAMP includes numerous MySQL articles, which you can find at http://www.onlamp.com/onlamp/general/mysql.csp. |
|