On Thu, Apr 16, 2015 at 10:02 PM, hadi <almarzuki2011@xxxxxxxxxxx> wrote: > Hi dear list, > > > i have php script with Microsoft database. im trying to bind > SQLSRV_SQLTYPE_NVARCHAR('max') but im getting error Fatal error: Unknown > PDO::PARAM_* constant given > > here is my code > > $stmt = $con->prepare('insert into [feedtable] > (title,link,pubdata,description,category,image,imagelink,source) values > (:title,:link,:pubdata,:description,:category,:image,:imagelink,:source)'); > $stmt->bindParam(':title',$item->title,SQLSRV_SQLTYPE_NVARCHAR('max')); > $stmt->execute(); > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > The allowed PDO params list: http://php.net/manual/en/pdo.constants.php I think you are trying to use this instead (mixing it with PDO): http://php.net/manual/en/book.sqlsrv.php What are you trying to do here?