My final Procedure that worked was as follows
1/ Install MySSQL using mysql-installer-community-5.6.10.1.msi
> Full install
2/ Add environment Variables
> Path (C:\Program files\mySQL\MySqlServer 5.6\Bin)
3/ Open Cmd.exe and log into MySQL
> Mysql –u root –p
4/ Create Alfresco database
> Create database alfresco;
5/ Create user
>Create user ‘alfresco’@’localhost’ identified by ‘alfresco’
6/ Grant permissions
> Grant all privileges on *.* to ‘alfresco’@’localhost’
> With grant option;
7/ Install Alfresco community 4.2.c (install Settings below)
> Install all components except the Postgresql
> Folder – C:\alfresco
Database Config
> URL - jdbc:mysql://localhost:3306/alfresco?useUnicode=yes&characterEncoding=UTF-8
> JDBC Driver - org.gjt.mm.mysql.Driver
> DB name - alfresco
> DB user - alfresco
> Password - *******
8/ Updating properties
> open C:\Alfresco40a\tomcat\shared\classes\ alfresco-global.properties.sample
> check Dir.root=c:\alfresco\alf_data
> uncomment url and Driver sections (updating to suit)
> uncomment db username and password (updating to suit)
> Insert index type index.subsystem.name=lucene (if using lucene indexs)
9/ Rename alfresco-global.properties.sample to alfresco-global.properties
> alfresco-global.properties.sample to alfresco-global.properties
10/ Apply MySQL Connector
> Copy Connector J 5.1.23.Jar to [Dir.root]\tomcat\lib
11/ restore mysql database in CMD
> mysql –u alfresco –p PASSWORD alfresco <D:\backup_dump\Export_data_base_Alfresco.sql
12/ restore contents, contents.delete and lucene indexes to alf_data folder
13/ Add full recovery to global properties
14/ start alfresco service
15/ run alfresco