Getting Your MySQL Certifications


If you plan to become a MySQL professional, you should really consider obtaining one or more MySQL Certifications. Each certification requires that you pass one or more exams containing about 70 multiple-choice questions. The present cost of each exam is $200 but is sometimes discounted. This exam is available through the Pearson VUE test centers located virtually across the globe.

What do you get for passing these tests? The first answer is professional recognition. While certification is no proof that you can really perform on the job, doing the hard, hard work of certifying can help you prepare for the real world. Let’s be frank. If you only know your stuff on paper, you won’t know what to do on the job. Before long you’ll be pounding the pavement. In a community like certified MySQL professionals the word spreads fast.

In this article we look at your choices for MySQL Certifications. Companion articles will discuss each of these certifications in more detail. The CMA (Certified MySQL Associate) is an entry-level certification, designed for people who are relatively new to using the MySQL database server. This certification covers basic SQL and basic database management system concepts. While this certification is not a prerequisite to the other MySQL certifications many people new to MySQL start with CMA certification before going to the more advanced certifications. It’s up to you.

The CMDEV (Certified MySQL Developer) is targeted at candidates who will be developing applications using MySQL as back-end storage. It is issued to those who pass both the Certified MySQL Developer-I and Certified MySQL Developer-II exams. You may pass either of these two exams first; they cover different but complementary material.

The CMDBA (Certified MySQL Database Administrator) is targeted at database administrators who are responsible for tuning, planning, and optimizing data layout for one or several servers and who do not write many applications. It is issued to those who pass both the Certified MySQL DBA-I and Certified MySQL DBA-II exams. You may pass either of these two exams first; they cover different but complementary material. The CMCDBA (Certified MySQL Cluster Database Administrator) requires first obtaining the CMDBA certification and then passing a single exam associated with a very specific aspect of MySQL technology. You can be a professional MySQL database administrator and never deal with the material covered by this exam.

Several tracks are available to prepare for any and all of these certifications. For example, Sun MySQL offers books and classes at every level. Take my advice, don’t commit to anything more expensive than a book until you download MySQL and spend some serious time trying it out. One thing is sure; if you want to pass the test you must run MySQL hour after hour, day after day. If you don’t like that do something else.

PHP and MySQL for Dummies (For Dumm By Janet Valade
US $10.62
End Date: Friday Jul-30-2010 3:47:43 PDT
Buy It Now for only: US $10.62
Buy it now | Add to watch list

MySQL Command Line

MySQL is a very powerful open source database which means that it is free to use. One of the many tools that come with MySQL is their MySQL Command Line that will allow you to do pretty much everything from create a database to add and edit entries in the database. This article will help you to begin using MySQL Command Line Successfully.

When you install MySQL you will receive a command line application where you can create new databases, modify current databases, and delete databases.

Once you launch the MySQL Command Line Client you will be prompted for a password assuming you set one up when you installed MySQL. From here you will be given a mysql> prompt and you will be able to enters your commands.

Lets start with creating a database in our system:

mysql> CREATE DATABASE temp;
Query OK, 1 row affected (0.00 sec)

Be sure that when creating databases, tables, and fields that the names are case sensitive and cannot include spaces.
All commands issued through the command line must end with a semi-colon (;) or else you will be promtped for more commands.

In order to edit this new database we have created we need to switch to it and that is where the USE command comes into play.

mysql> USE temp;
Database changed

Now that we have a working database lets create a table in the database to store our relatives

mysql>CREATE TABLE family (name char(25), age integer, relation char(50));
Query OK, 0 rows affected (0.05 sec)

We just created a table that contains three fields so lets go into a little more detail about that command we just ran.

First we used the CREATE TABLE command which does exactly what it says does and it creates the table. Where we typed in family is the name of the table that we just created. Everything else within the parenthasis are fields in the table and what type of information is going to be stored in that field. For example that name char(25) tells SQL to create a field within the table called “name” and the char(25) tells it that it will be a character field meaning you can type any character you want in it and that it is 25 characters long. The age integer tells SQL to create a field in the table called age and that it will be a integer meaning that only whole numbers are stored in this field. You can add a size to the integer field like when using char but it is not nessecary as the default length of an interger field is 11. The last one is just like the first one realtion char(50) except for the fact that we made this field able to hold 50 characters instead of 25.

Now that we have created a database and a table lets look at a coupld show commands to see what we have. The show commands are pretty straight forward in terms of what they do. Lets start with SHOW DATABASES;

mysql> SHOW DATABASES;

+—————-+
| Database   |
+—————-+
| temp          |
| mysql        |
| mikenetpc  |
+—————+

3 rows in set (0.01 sec)

You can see that the SHOW DATABASES command will print you a list of all the databases on the system so can you guess what the SHOW TABLES command will do once you have used the USE temp command. Yep you guessed it, it will show you a list of all the tables in the database temp.

mysql> SHOW TABLES;

+———————-+
| Tables in temp  |
+———————-+
| family               |
+———————-+
1 row in set (0.01 sec)

Lets keep going deeper with the SHOW commands and lets look at the table itself and see all of the fields we have. We will simply use the SHOW COLUMNS FROM family command.

mysql> SHOW COLUMNS FROM family;

+———-+————-+——-+——–+————+———+
| Field    | Type      | Null  | Key   | Default  | Extra |
+———-+————-+——-+——–+————+———+
| name   | char(25) | YES |         | NULL    |           |
| age      | int(11)    | YES |         | NULL   |           |
| relation | char(50) | YES |         | NULL   |           |
+———-+————-+——-+——–+———–+———-+
3 rows in set (0.07 sec)

Now that we have create a database and a table and confirmed that they are there and setup the way we would like, lets add some information to the table because a database is not good without information. If you have every done any MySQL and PHP programming these next 2 commands should look very familiar. Lets start by adding in some people into the table by using the INSERT INTO table command. We are going to add Derek who is 22 and my cousin, Chelsie who is 21 and my cousin, and Leslie who is 27 and my sister.

mysql>INSERT INTO family (name, age, relation) VALUES (‘Derek’, 22, ‘Cousin’);
Query OK, 1 row affected (0.03 sec)

mysql>INSERT INTO family (name, age, relation) VALUES (‘Chelsie’, 21, ‘Cousin’);
Query OK, 1 row affected (0.03 sec)

mysql>INSERT INTO family (name, age, relation) VALUES (‘Leslie’, 27, ‘Sister’);
Query OK, 1 row affected (0.03 sec)

Now that we have added our information lets take a look at it and confirm it is all there. We will be using the SELECT command to view content in the table.

mysql> SELECT * FROM family;

+———–+——+————-+
| Name   | Age | Relation |
+———–+——+————-+
| Derek   | 22   | Cousin   |
| Chelsie | 21   | Cousin   |
| Leslie   | 27   | Sister     |
+———-+——-+————-+
3 rows in set (0.01 sec)

We can also use the SELECT command to order our list or to only pick a specific person.

mysql> SELECT * FROM family ORDER BY name;

+———–+——+————-+
| Name   | Age | Relation |
+———–+——+————-+
| Chelsie | 21 | Cousin     |
| Derek   | 22 | Cousin     |
| Leslie   | 27 | Sister       |
+———+——+—————+
3 rows in set (0.01 sec)

As you can see by simple adding ORDER BY name we were able to resort the information in the table by name. Now lets pull a specific person from the table

mysql> SELECT * FROM family WHERE name=’Leslie’;

+———+——+————-+
| Name | Age | Relation |
+———+——+————-+
| Leslie | 27   | Sister     |
+———+——+————-+
1 rows in set (0.01 sec)

By qualifying what we want name to be equal to we can pull specific records out of the table.

PHP and MySQL for Dummies (For Dumm By Janet Valade
US $10.62
End Date: Friday Jul-30-2010 3:47:43 PDT
Buy It Now for only: US $10.62
Buy it now | Add to watch list

PHP Frameworks

PHP Frameworks:

PHP is finally getting the attention that i deserves, yes I have always believed that PHP is one of those neglected languages, neglected because they are used in abundance but there isn’t enough programs or as we call them frameworks to work on PHP. But that was until the release of PHP 5. After the release of PHP, there is a range of Frameworks available.

Today we review and understand closely the various frameworks available for PHP. Some of the most popular frameworks for PHP are:

The Zend Framework.
The Prado Framework.
CakePHP Framework.
Symphony Framework.

These frameworks are ofcourse the most popular ones and there are more than 40 frameworks for PHP and it is very difficult to know which framework suits you the best and will be the most productive for your web development and enterprise goals.

Ofcourse all these frameworks are free and provide a host of services to satisfy almost all of the web development needs of a web designer or a website owner. Some of the most common features of all these PHP Framework are as follows:

PHP 5: Thats obvious! All the frameworks support both PHP 5 version of the PHP.Only “The Prado Framework” support the PHP 4.x version of the PHP as well as the PHP 5 version of the PHP.
Multiple DBs: All the above mentioned frameworks support multiple databases to be used without making any setup and configuration changes.
Validation: All the four frameworks have an inbult validation and a filtering component which can be used.
MVC: All the four frameworks have the MVC that is the Model View Controller setup.

So, these are the few components and controllers that are common in most of the PHP based frameworks and therefore one should look out for these components when downloading or using a PHP framework.

Now let us see a brief introduction about each of these PHP based frameworks and their salient features:

Zend Framework:Zend Framework is a component based framework with components for almost all of the programming needs of a PHP programmer or PHP developer.

Some of the components in the Zend Framework are:

zend_acl
zend_auth
zend_cache
zend_config
zend_consolegetop and many more.

Prado Framework: The Prado framework provides the following benefits for web application developers.

reusablility
Ease of use
Robustness
Performance
Team Integration

CakePHP:

Some of the important features of CakePHP are as follows:

Model, View, Controller Architecture
View Helpers for AJAX, Javascript, HTML Forms and more
Built-in Validation
Application Scaffolding
Application and CRUD code generation via Bake
Access Control Lists
Data Sanitization
Security, Session, and Request Handling Components
Flexible View Caching

Like all other frameworks cakePHP is also component based framework.

The Symphony Framework:

Some of the features of the symphony framework are as follows:

simple templating and helpers
cache management
smart URLs
scaffolding
multilingualism and I18N support
object model and MVC separation
Ajax support
enterprise ready

Thus these are the best options available for frameworks relating to PHP and one should review all these features of all these frameworks against his needs and choose the appropriate framework to work on!

Any suggestions and comments as always are welcome.

Pro Zend Framework Techniques: Build a Full CMS Project
US $12.30
End Date: Friday Jul-30-2010 17:16:19 PDT
Buy It Now for only: US $12.30
Buy it now | Add to watch list

How PHP Programming Language and Zend Framework are Helpful?

PHP provides support to different databases like Oracle, Sybase, MySQL, etc & it can be easily embedded in to HTML also. It rapidly grew to become much more robust language, but was originally designed for use in Web Site Development. In a nutshell, PHP is most popular because of its functionality which can be changed as per ones requirements.

PHP is the most popular web scripting language as well as a widely used programming language used for web-site development. PHP stands for “Hypertext Preprocessor” but it originally stood for “Personal Home Page” in 1995. It is a brilliant language which was originally designed for producing dynamic web pages for virtually any web application. PHP is a general purpose scripting language that facilitates developer in making dynamically driven websites & it is easy to learn & understand.

In PHP community, PHP frameworks are the newest buzz word from recent years. There’s different kinds of frameworks obtainable & it is lovely for developers to select the right framework. The objective of a framework is make the web-based applications method less hard. This helps in reusing the developed code, intuitive to work with & of work stable. A quantity of the important frameworks are Zend framework, Symfony, CakePHP, Prado & Solar. Among these, Zend framework is the most hyped framework as well as a web based application designed to build complex PHP applications simpler.

Benefits of PHP application development:

- PHP integrates well with HTML which is its primary use i.e. the actual PHP code can be embedded in to HTML code. This enables your web server to method web pages before they are actually displayed in the user’s web browser.

- PHP is an open-source language so it is free. It can be easily installed & you don’t need to pay thousands of dollars to purchase. It is used by millions of people & giant group of developers around the globe.

- PHP is generally human friendly (simple & easy to learn) than other high level programming languages such as C, C++, ASP or ASP.net.

- PHP is versatile which is supported on most web servers & runs on all major operating systems like Mac OS, windows, Linux etc.

- The most recent version of PHP is stable. It is used for web programming much like C / JavaScript, Java & Microsoft C#.

- PHP results in quicker navigation & efficient page loading as its processing speed is faster.

PHP is a well-established language. Its popularity continues to grow rapidly because it is free (it is open-source application), it is speedy (It can be easily embedded in to HTML), have full object oriented support & giant capability to build any sort of application which can run in web browser.
Pro Zend Framework Techniques: Build a Full CMS Project

US $12.30
End Date: Friday Jul-30-2010 17:16:19 PDT
Buy It Now for only: US $12.30
Buy it now | Add to watch list


What are some link building tips for local keywords?


What are some good strategies for link building for a local business site, that wants to rank high for local keyword searches?


  • BrownPHP Tag Cloud

  • Copyright © 1996-2010 Brown PHP. All rights reserved.
    iDream theme by Templates Next | Powered by WordPress

    Powered by Yahoo! Answers