Categories | Question details Back To List | ||
scheduler with postgresql Hi everybody tengo el siguiente problema estoy tratando de implementar el calendario con postgresql pero no he podido siempre me arroja errores del mysql y en los ejemplos solamente estan con mysql y pues estria muy agradecido si me pueden ayudar para poder traer datos desde postgresql muchas gracias por todo Answer posted by Alex (support) on Dec 16, 2009 09:01 Hello, the postgre server-side implementation is the same as one for mysql. The difference only in the constructor - the second parameter should be "Postgre": $scheduler = new schedulerConnector($res,"Postgre"); Answer posted by Stanislav (support) on Dec 16, 2009 09:53 $res in above sample - result of pg_connect command Answer posted by diego on Dec 16, 2009 11:22 Muchisimas gracias si le puse el parametro postgresql y me cargo la pagina pero me arroja error de xml Error type: LoadXML Description: Incorrect XML lo unico que hice fue una tabla en postgresql con la siguiente estructura: CREATE TABLE eventos ( id_evento character varying NOT NULL, start_date date, end_date date, evento_nombre character varying, detalles character varying, CONSTRAINT eventos_pkey PRIMARY KEY (id_evento) ) WITH ( OIDS=FALSE ); y estoy utilizando como ejemplo la pagina: 05_loading_mysql.html la cual carga la pagina events.php: events.php: <?php //session_start(); include ('../componentes/codebase/connector/scheduler_connector.php'); require_once("../componentes/comunicacion.inc"); global $DB_SERVER,$DB_PORT,$DB_NAME,$DB_USER,$DB_PASSWORD; $res = pg_connect("host=$DB_SERVER port=$DB_PORT dbname=$DB_NAME user=$DB_USER password=$DB_PASSWORD"); //$res=mysql_connect($server, $user, $pass); //mysql_select_db($db_name); $scheduler = new schedulerConnector($res,"Postgre"); //$scheduler->enable_log("log.txt",true); $scheduler->render_table("eventos","id_evento","start_date,end_date,evento_nombre,detalles"); ?> muchas gracias por tu tiempo y comprension Answer posted by Alex (support) on Dec 17, 2009 03:25 The answer is given here http://dhtmlx.com/docs/products/kb/index.php?s=normal&q=13531 |