neoPHP y SQL Server - Forum

Forum Navigation
You need to log in to create posts and topics.

neoPHP y SQL Server

Es posible que neoPHP conecte con SQL Server?. Conozco poco del tema pero tengo una base de datos creada en SQL Server y me preguntaba si era posible que el plugin la conectara. Si no es posible, existe una posibilidad de algún modo o habría que desarrollar un plugin nuevo?. Otra que se me ocurre es directamente programar los PHP y llamarlos con Ajax o bien llenarlos con formularios y que los mismos hagan el trabajo.

Saludos!

@palamar la plantilla de configuración para neoPhp "config.php" inluye ejemplos de configuración para SQL Server.

//SQL Server and ODBC sample------------------------------------------------------------------------
$dbAlias[0]="db1";
$dbConnectionStrings[0]="sqlsrv:Server=localhost;Database=testdb";
$dbUserNames[0]="SqlServerUserName";
$dbPasswords[0]="SqlServerUserPassword";

//Connection string through a port
//"sqlsrv:Server=localhost,1521;Database=testdb"

//Connection string for Azure
//"sqlsrv:Server=12345abcde.database.windows.net;Database=testdb"
javadrajabihakami and suyonob have reacted to this post.
javadrajabihakamisuyonob

Pues no me había percatado de esto @luishp, muchas gracias, voy a probar que tal va. Gracias!

What about using postgres pdo?

Give an Example please

@suyonob Postgres is not currently supported by neoPhp plugin but if there is enough interest it's possible to add it.

Regards.

suyonob has reacted to this post.
suyonob

if you don't mind please add for postgres and firebirdsql, Thank you very much for the update.

luishp has reacted to this post.
luishp