Hi,
I am having issues with PDO on my web-host.
They do not support pdo.
Is there another way to write my custom connector without pdo?
Here is my code:
[code]<?php
require(“connectors/scheduler_connector.php”);
require(“connectors/db_pdo.php”);
$connection = new PDO("odbc:Driver={Microsoft Access Driver (*.mdb)};Dbq=../../elya158/db/HMS.mdb");
$scheduler = new schedulerConnector($connection,“PDO”);
$scheduler->enable_log(“log.txt”,true);
$scheduler->render_table(“SELECT ActivityId,StartDate,EndDate,ActivityName,Details,UserName,FamilyName from Activities WHERE FamilyName = '”.$_COOKIE[‘familyName’]."’",“ActivityId”,“StartDate,EndDate,ActivityName,Details,UserName,FamilyName”);
?>[/code]