|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-04-01 15:41 UTC] leoguti at iband dot net
I can't do that the function work with timestamp with time zone data type.
I have the table
create table proob(
field_proob timestamp with time zone
);
an I tried to do
<?
$a=array("field_proob"=>"2003-03-30 22:47:52.657715-05");
echo pg_insert($conexion,"proob",$a);
?>
With other data types this function work but with this don't.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 22:00:01 2025 UTC |
Read the manual on PostgreSQL: uni=# create table t ( t timestamp with time zone); CREATE uni=# insert into t values ('2003-04-01 22:00:00.0000 GMT'); INSERT 167462 1