Gazing into my crystal ball I observed "jp2code" <poojo.com/mail>
writing in news::
> The provider I host my website on gives me three options when it comes
> to databases:
>
> 1. Microsoft Access
> 2. MySQL
> 3. MSSQL
>
> I have used Access in the past, and it is adequate for the minor
> database work I plan on doing.
>
> However, I would like to learn some quality skills, just in case a
> client wants to hire me to do some database work one day.
>
> Which database would be the best to learn? What are the strengths of
> one verses the other? What are their weaknesses? Which one is the
> simplest to write code for? Which has the most code examples using
> Classic ASP?
>
> Thanks for the help!
> ~Joe
>
>
A lot of hosts will offer only MySQL or access. If you're ever going to
get into PHP, that comes almost only with MySQL.
The coding differences between MySQL and MSSQL are few, but important.
For example, date() in ASP produces MM-DD-YYYY, and MySQL stores dates
as YYYY-MM-DD. I just created a function to swap it around. MSSQL uses
AUTOINCREMENT and MySQL uses AUTO_INCREMENT. There are other
differences, but for the most part, MySQL is pretty much the same.
Personally, I like MySQL better and MSSQL. If you have Access tables,
MySQL has a nice conversion tool, and there are some nice GUI
applications for MySQL as well, HeidiSQL comes to mind.
--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share