hi,
im working with php 4 and postgresql 8 and in my php script id like to create a temp table on my database server. how do i do this? how do i verify it was created?
i tried the following:
$sql = "create temp table s_info(a int, b text) on commit delete rows ";
pg_query($dbh,$sql);
$dbh is my connection.
any help will be highly appreciated.