Skip to content

Instantly share code, notes, and snippets.

@Reflej0
Created January 14, 2018 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Reflej0/469e81af8e06c266c99aedb75f7ddbc4 to your computer and use it in GitHub Desktop.
Save Reflej0/469e81af8e06c266c99aedb75f7ddbc4 to your computer and use it in GitHub Desktop.
Migración PHP SQL -> MySQL con XAMPP (Instalación)
/*
Version de PHP 5.6
Para que funcione esto se deben seguir estos pasos:
1) http://php.net/manual/es/ref.pdo-sqlsrv.php Descarga de SQLSRV 3.0 -> To download PHP driver for SQL -> Windows PHP driver ->SQLSRV32.EXE
2) Descomprimir los archivos en xampp\php\ext
3) En XAMPP -> Apache -> Config -> PHP.ini ->
extension=php_sqlsrv_56_ts.dll
extension=php_sqlsrv_56_nts.dll
extension=php_pdo_sqlsrv_56_ts.dll
extension=php_pdo_sqlsrv_56_nts.dll
4) Reiniciar Xampp.
5) Bajar el OBDC Driver 11 para x64 https://www.microsoft.com/en-us/download/details.aspx?id=36434
6) Instarlo (obvio)
7) Ejecutar todo este código.
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment