Starting from PhalconPHP 3.0 the old connector i wrote to allow me to use SQL Server stopped working. To let me use new versions of PhalconPHP i updated the old classes (both Adapter and Dialect). You can download them here , search for the two files named Mssql3.php
Tag Archives: phalconphp
PhalconPHP: alternative way to use Oracle11g
Develpoing a new website based on PhalconPHP i tried to use Oracle11g as database, but in the process i had some problem. Searching the web for solutions i read about some problem with the native Oracle PDO driver, so i tried “pdo-via-oci8” by Arjay Angeles . As done for MSSQL i tried to create an new Adapter and a new Dialect to let me use pdo-via-oci8 inside my PhalconPHP-based application. What …
Continue reading “PhalconPHP: alternative way to use Oracle11g”
PhalconPHP 2.0.x : SQL Server Connector
Starting from the release of PhalconPHP 2.0 the old connector i wrote to allow me to use SQL Server stopped working. To let me use new versions of PhalconPHP i updated the old classes (both Adapter and Dialect). You can download them here .
PhalconPHP: SQL Server Connector
During the developing of a PhalconPHP based web application i had the necessity (it was a project constraint) to use MS SQL Server as database. I started looking around the web and i jumped into this project, but using it i had some problem with pdo_sqlsrv driver and i had to create something (not so much) different. The result …