I host my websites on my own webserver, which does its work fine.
Currently I use for this website the popular WordPress weblog software.
Instead of MySQL I use SQL Server (Also known as MSSQL).
I also use this platform for my own blogging platform currently in developmend.
My system was first developed with PHP and MySQL, but now I use SQL Server (with the new SQL Srv driver) what means that I need to rewrite some queries.
Example:
-instead of limit 1 at the end I must use top 1 after the select
-SQL Server is strict about value types, which I just saw.
My system uses for date storage normal DateTime values, with MySQL this be simple converted to string, with SQL Server this is not the case
The error I got was: Object of class DateTime could not be converted to string
After searching with google I found an entry on the MSDN website how to fix this problem.
After I applied this, its now working just like it did with MySQL.
yours truly