MySQL, Second Edition : Visual QuickStart Guide (2nd Edition) (Visual Quickstart Guides)
| |||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||
| Sort customer reviews by: | |||||||||||||||||||||||||||||
|
Show All Reviews on Page
Hide All Reviews on Page
| |||||||||||||||||||||||||||||
| MySQL, Second Edition : Visual QuickStart Guide (2nd Edition) (Visual Quickstart Guides) | |||||||||||||||||||||||||||||
|
Even if you've never used MySQL before, this Visual QuickStart Guide will have you up and running with the world’s most popular open source database application in no time. In this completely updated edition of our best-selling guide to MySQL, leading technology author Larry Ullman uses his trademark crystal-clear instructions and friendly prose to introduce you to everything that’s new in MySQL. Filled with step-by-step, task-based instructions and loads of visual aids, this book explains how to interact with MySQL using SQL, the language common to all databases. The interface examples show how to use MySQL’s own tools and how to use three popular programming languages (PHP, Perl, and Java). The book covers MySQL versions 3 and 4, as well as everything new in the eagerly anticipated version 5. Along the way, you'll find extensive coverage of MySQL installation, administration, database design, as well as its use with various programming languages, database programming techniques, utilities, advanced MySQL and SQL, and more!
• Takes an easy, visual approach to teaching MySQL, using pictures to guide you through the software and show you what to do. • Works like a reference bookâ??you look up what you need and then get straight to work. • No long-winded passagesâ??concise, straightforward commentary explains what you need to know. • Affordably priced, because buying a computer book shouldn’t be an investment in itself. • Companion Web site at www.DMCInsights.com/mysql2 contains complete source code for examples in the book, online resources, extra scripts and tutorials, updates, a reader forum, and more. |
|||||||||||||||||||||||||||||
| Reader Reviews 1 - 15 of 15 | |||||||||||||||||||||||||||||
| Review Date |
Review Rating(5 High) |
Review Helpful to: |
Customer Review | Reviewer Info |
Permanent Link |
||||||||||||||||||||||||
| Reader Reviews Below Sorted by Newest First | |||||||||||||||||||||||||||||
| 03-07-08 | 5 | 1\1 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
Larry Ullman has seemingly made a career out of his expertise in PHP and MySQL. And his expertise in both is unquestionable. Fortunately for those of us who wish to quickly grasp the essentials of these two technologies, Ullman is also an excellent teacher and writer.
MySQL walks you gently through the beginner to early intermediate level of familiarity with the platform. It does not treat any aspect of MySQL in great depth - which is a plus, not a minus. Cruising this book will not make you an expert on MySQL, but it will place you firmly in control of the fundamentals so you can more comfortably continue on the path to becoming a MySQL. Think of it as "training wheels". Overall, a thorough, painless introduction to MySQL for the rank beginner. Jerry (Review Data Last Updated: 2008-11-30 07:47:52 EST)
|
|||||||||||||||||||||||||||||
| 05-28-07 | 5 | (NA) |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
This book is excellent for someone with no experience with MySQL. (Like Me!) It steps you through installation, setup, and use without assuming prior knowledge.
(Review Data Last Updated: 2008-07-07 02:00:00 EST)
|
|||||||||||||||||||||||||||||
| 06-30-06 | 5 | 3\3 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
Learning MYSQL can be a little daunting for beginners because its open-source and you have to do some research in getting the right information sometimes. This book is aimed at the beginner who wants to get their feet wet with MYSQL and also how to use it with many of the more popular development platforms such as Java, Perl and PHP.
It is easy to read through because of its column-based format with enough snapshots and visual guides to prevent you from getting eye strain. º It first focuses on getting up and running on MySQL with the installation process on Windows or Mac or Linux (and UNIX). The book gives you all the links to install all the components of the database plus additional tools that will streamline you development process. There is also good information on how to upgrade your version of MySQL The next chapter explains how to get you up and running in MySQL in the three different OS¡¦s with specifics on: Using mysqladmin, setting root password, using mysql client, setting up user privledges (creating new users) and starting and stopping services. A kinda detailed brief overview of how to be a MySQL admin. Chapter 3 focuses on database design which usually can be kinda boring talking about normalization, importance of keys, table relationships, etc but the book only gives you the information you need with nice visuals to reinforce what is tauaght. Chapter 4 goes over the MySQL and SQL commands in creating a database and table(s) with emphasis on field data types. Chapter 5 is a very useful chapter on basic SQL commands, since what is a database without the user knowing SQL, right? The author very succinctly reviews the SELECT statement for retrieving data, the UPDATE statement for updating records, DELETE and INSERT (you can guess what those two do). The book also goes into detail about table JOINS and filtering data with the WHERE, LIKE and GROUP BYclauses. A great resource chapter for the times you forget your basic syntax (which most people do from time to time). Chapter 6 through 9 reviews how each of the more popular server-side web languages (PHP, Perl, and Java) use MyQL is used to retrieve, populate and update via web pages. The book provides code examples of the MySQL functions are specific to each language. Starting from how to connect to the database; how to execute commands; how to retrieve and display data (looping through records); how to incorporate error handling and how to secure your data. Depending on your preference, you will at least one of these chapters very helpful. The next chapter focuses on new features in MySQL version 5 (stored procedures, triggers and views). These are somewhat advanced topics to a point but are covered wonderfully that even the newbie can understand. The book finishes up with database administration issues such as performing and scheduling backups, logging, importing/exporting and repairing corruption issues. A great introduction to MySQL that really can be your all-in-one reference as well. (Review Data Last Updated: 2008-07-07 02:00:00 EST)
|
|||||||||||||||||||||||||||||
| 06-29-06 | 5 | 2\2 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
Learning MYSQL can be a little daunting for beginners because its open-source and you have to do some research in getting the right information sometimes. This book is aimed at the beginner who wants to get their feet wet with MYSQL and also how to use it with many of the more popular development platforms such as Java, Perl and PHP.
It is easy to read through because of its column-based format with enough snapshots and visual guides to prevent you from getting eye strain. º It first focuses on getting up and running on MySQL with the installation process on Windows or Mac or Linux (and UNIX). The book gives you all the links to install all the components of the database plus additional tools that will streamline you development process. There is also good information on how to upgrade your version of MySQL The next chapter explains how to get you up and running in MySQL in the three different OS¡¦s with specifics on: Using mysqladmin, setting root password, using mysql client, setting up user privledges (creating new users) and starting and stopping services. A kinda detailed brief overview of how to be a MySQL admin. Chapter 3 focuses on database design which usually can be kinda boring talking about normalization, importance of keys, table relationships, etc but the book only gives you the information you need with nice visuals to reinforce what is tauaght. Chapter 4 goes over the MySQL and SQL commands in creating a database and table(s) with emphasis on field data types. Chapter 5 is a very useful chapter on basic SQL commands, since what is a database without the user knowing SQL, right? The author very succinctly reviews the SELECT statement for retrieving data, the UPDATE statement for updating records, DELETE and INSERT (you can guess what those two do). The book also goes into detail about table JOINS and filtering data with the WHERE, LIKE and GROUP BYclauses. A great resource chapter for the times you forget your basic syntax (which most people do from time to time). Chapter 6 through 9 reviews how each of the more popular server-side web languages (PHP, Perl, and Java) use MyQL is used to retrieve, populate and update via web pages. The book provides code examples of the MySQL functions are specific to each language. Starting from how to connect to the database; how to execute commands; how to retrieve and display data (looping through records); how to incorporate error handling and how to secure your data. Depending on your preference, you will at least one of these chapters very helpful. The next chapter focuses on new features in MySQL version 5 (stored procedures, triggers and views). These are somewhat advanced topics to a point but are covered wonderfully that even the newbie can understand. The book finishes up with database administration issues such as performing and scheduling backups, logging, importing/exporting and repairing corruption issues. A great introduction to MySQL that really can be your all-in-one reference as well. (Review Data Last Updated: 2007-04-12 17:05:28 EST)
|
|||||||||||||||||||||||||||||
| 10-24-05 | 4 | 3\3 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
The book is a bit out of date since it's assuming mysql version 3 is current and currently mysql v5 is what is currently released, but it has good instructions on installing mysql on multiple platforms as well as managing on multiple platforms
(Review Data Last Updated: 2008-07-07 02:00:00 EST)
|
|||||||||||||||||||||||||||||
| 08-12-05 | 4 | 2\2 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
Well organized with a practical approach. Buyers without previouis acquaintance with PHP programming language will have some difficulty. Otherwise the text is a great 'introduction'.
(Review Data Last Updated: 2008-07-07 02:00:00 EST)
|
|||||||||||||||||||||||||||||
| 07-07-05 | 4 | 0\17 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
This contains some good information, but there are better books out there.
I give it a 7.2937 out of 10 using my advanced book review calculation system. (Review Data Last Updated: 2008-07-07 02:00:00 EST)
|
|||||||||||||||||||||||||||||
| 04-18-05 | 5 | 9\9 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
If you are new to SQL or MySQL, this is the book to get. Once you get past the newbie stage, then get Vaswani's MySQL Complete Reference. I really like Ullman's books. He does a very good job of explaining and walking you through the various parts with a minimum of fuss and distractions. This, as well as his other books on PHP are tutorial in nature rather than reference books, so the order of subjects is his. The book also works ok (not great) as a reference because he has a pretty good index.
I read MySQL VQG last year when I was completely new to SQL, MySQL & PHP, so that is the perspective for this rating. It is intended to be an introductory book, hence the name Visual QuickStart Guide. It was a fast, straight forward read, well worth my limited available time. I highly recommend Ullman to MySQL beginners. (Review Data Last Updated: 2007-07-11 00:03:03 EST)
|
|||||||||||||||||||||||||||||
| 04-17-05 | 5 | 8\8 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
If you are new to SQL or MySQL, this is the book to get. Once you get past the newbie stage, then get Vaswani's MySQL Complete Reference. I really like Ullman's books. He does a very good job of explaining and walking you through the various parts with a minimum of fuss and distractions. This, as well as his other books on PHP are tutorial in nature rather than reference books, so the order of subjects is his. The book also works ok (not great) as a reference because he has a pretty good index.
I read MySQL VQG last year when I was completely new to SQL, MySQL & PHP, so that is the perspective for this rating. It is intended to be an introductory book, hence the name Visual QuickStart Guide. It was a fast, straight forward read, well worth my limited available time. I highly recommend Ullman to MySQL beginners. (Review Data Last Updated: 2007-02-03 15:45:27 EST)
|
|||||||||||||||||||||||||||||
| 11-30-04 | 4 | 8\8 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
I bought this book Second; the O'Reilly was the first book on PHP I bought.
I made it through about 5 chapters of the O'Reilly -- through Arrays -- and just couldn't wrap my brain around the concept of Multidimensional Arrays and how they're handled in PHP. So, I bought this book. I read it cover to cover and really got a good grasp, not just of Arrays but of PHP in general and good programming techniques. then I went back to the O'Reilly and finished it. So here's what I think: Neither book is perfect. The VQS is great for the absolute beginner, as is the O'Reilly. However, the O'Reilly gets into the thick of things such as Validation techniques and the like before this reader was prepared for it, and I suffered through a lot of the minutae of that process before I had a grasp of PHP programming. That said, the VQS guide barely scratches the surface of validation and security, however it covers its sub-topics in a very logical order. the round-up: VQS Pros: *Very Readable. *Makes sense chronologically in terms of learning process *After reading, gives a good framework for further learning. *Good online resources *good Appendices VQS Cons: *Little in the way of validation explanation *Not much info on Regular Expressions O'Reilly Pros: *In-depth (sometimes to a fault!) *More complete information on Validation, Cookies, XML integration (the VQS had none) and Regex. *Follows a theme throughout the book (a restaurant online menu project) *Self-quizzes at the end of each chapter O'Reilly Cons: *Teaches a bit out-of-order (for me) *Gets bogged down in the minutae early on *Not the most readable writing style. I recommend BOTH of these titles together. With them in hand (and maybe Larry Ullman's MySQL book) you will have pretty much everything covered. (Review Data Last Updated: 2007-02-03 15:45:27 EST)
|
|||||||||||||||||||||||||||||
| 07-27-04 | 5 | 19\19 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
Larry Ullman's Visual QuickStart Guide is top-notch. At the beginning of the summer, I knew nothing about MySQL. Now I am SELECT-ing, INSERT-ing, and doing all other sorts of MySQL like a pro, or at least like someone who understands what is going on.
This book is divided into 3 major sections in my mind. The first 100 or so pages deal with installing MySQL, creating databases, and using SQL queries to do thing. The next 80 pages are about using MySQL in conjunction with various languages: PHP, Perl, and Java. The last 100 pages have helpful solutions (how to make a search engine, or present result pages when doing a search), a section on MySQL administration, and some useful appendicies. Like most QuickStart Guides, you can jump around in this book and use it as a reference manual, though you really need to read from chapter 2 to 4 if you are new to relational databases in general or MySQL in particular. Chapter 3 on Database Design is excellent. I walked through it step-by-step and followed the instructions to plan out my database. The database has been working very well, and I felt that I really understood what was going on instead of just entering commands and hoping they worked. Chapter 4 and 5, which explain MySQL commands and functions, are likewise very well done and useful. My only criticism is that sometimes the code presented in the latter sections of the book gets mired-down in lots of HTML tags which can make things a little difficult to read. There is not much here for fairly intermediate to advanced users who already know MySQL. If that is you, perhaps another book would serve you better. In summary: if you want to understand and use MySQL and have little to no knowledge of it currently, this book is for you. (Review Data Last Updated: 2006-07-07 10:41:07 EST)
|
|||||||||||||||||||||||||||||
| 01-19-04 | 5 | 2\2 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
Another reviewer mentioned "bugs" in this book, i.e., commands in the book that don't work. as I understand it, one of the difficulties with open-source software is that in can be available in a number of different packages from a number of different distributors that all work in slightly different ways. Therefore, if you're not using exactly the same version of MySQL, it's not going to work exactly the same for you. Given this inherent difficulty in writing a guide like this Larry Ullman does an excellent job. As some other reviewers have pointed out, the step-by-step approach of the Visual Quickstart Guides works really well for some people, like me. My first one was Liz Castro's HTML book, which got me hooked.
The best feature of Larry Ullman's book, though, is the fact that he has set up an online support site to accompany it. Larry personally answers questions from readers who have gotten stuck at various points. This is above and beyond the call of duty for most tech-book writers. Unfortunately for Larry, his wish to have more readers who have finished the book help out with the question answering hasn't come true yet, so if you do finish the book, go to the site and help him out! (Review Data Last Updated: 2006-07-07 10:41:07 EST)
|
|||||||||||||||||||||||||||||
| 09-14-03 | 5 | 1\27 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
You really want to do business with these people.Fast,efficient and product was brand new condition. Highly recommended!!!
(Review Data Last Updated: 2006-07-07 10:41:07 EST)
|
|||||||||||||||||||||||||||||
| 07-25-03 | 3 | 1\14 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
This book is wierd some of the codes do not work and some do.
It is very fraustrating to me as a beginner to run into bugs in the book. (Review Data Last Updated: 2006-07-07 10:41:07 EST)
|
|||||||||||||||||||||||||||||
| 05-10-03 | 4 | 3\5 |
| Reviewer | Permalink | ||||||||||||||||||||||||
|
An excellent balance of RDBMS theory (including normalization), using MySQL (installation and full coverage of usage of SQL), and interfacing with SQL from several languages (PHP, Perl, Java), along with some "advanced topics". I plan to use this as a textbook for a MySQL applications course.
(Review Data Last Updated: 2006-06-27 16:10:05 EST)
|
|||||||||||||||||||||||||||||
| Reader Reviews 1 - 15 of 15 | |||||||||||||||||||||||||||||
| All Books | Arts | Biography | Click Here For An A-Z Index Of All 213 Best-Seller Subjects | Business | Children's | Comics | ||||||
| Computers | Cooking | Engineering | Entertainment | Health | History | Home | Horror | Humor | Law | Fiction | Medicine | Mystery |
| Nonfiction | Outdoors | Parenting | Professional | Reference | Religion | Romance | Science | Sci-Fi | Sports | Teens | Travel | |