creating table w/ php help - Mailing list pgsql-general

From webmaster
Subject creating table w/ php help
Date
Msg-id 3CBFF494.E408CF77@harbornet.com
Whole thread Raw
Responses Re: creating table w/ php help  (David A Dickson <davidd@saraswati.wcg.mcgill.ca>)
List pgsql-general
I'm very new to php and PostgreSQL.  I keep getting the following error
when I try to create a table:

Warning: Wrong parameter count for pg_exec() in
/var/www/html/elkan/createtable.php on line 23
The table, ghdsl could not be created

Here is the code I'm using:

<?php

// set variables
$tablename = "ghdsl";
$dbname = "testingdb";
$user = "testinguser";
$password = "xxxxxx";

$connect = "pg_connect($dbname, $user, $password)";

$query = "CREATE table $tablename (id INT UNSIGNED NOT NULL
AUTO_INCREMENT PRIMARY KEY, ip TEXT, customer TEXT, dslphone TEXT, date
TEXT, vpivci TEXT)";

 if (pg_exec($dbname, $query, $connect))
  {
  print ("The table, $tablename was successfully created");
  } else {
  print ("The table, $tablename could not be created");
  }

?>

thanks for any help.




pgsql-general by date:

Previous
From: Yury Don
Date:
Subject: Re: pltcl bug in 7.2?
Next
From: Yury Don
Date:
Subject: Re: pltcl bug in 7.2?