Pg_prepare ile damgası türünü kullanarak

2 Cevap php

Aşağıdaki kodu Koşu:

$preCallMatch = pg_prepare($dbcp, 'callMatch',
                            "SELECT duration 
                               FROM voip_calls 
                              WHERE system_id = $1 
                                AND call_start => $2                                   
                                AND call_start <= $3
                                AND destination = $4");

Ben şu hatayı alıyorum:

Warning: pg_prepare(): Query failed: ERROR:  operator does not exist: timestamp without time zone => "unknown"
HINT:  No operator matches the given name and argument type(s). You may need to add explicit type casts. in /home/www/dinesh/UPSReconcileZeroSecondCalls.php on line 38

Ben hayır şans ile bu şekilde 2 $ döküm denedim:

$preCallMatch = pg_prepare($dbcp, 'callMatch',
                            "SELECT duration 
                               FROM voip_calls 
                              WHERE system_id = $1 
                                AND call_start => CAST ( $2 AS TIMESTAMP )
                                AND call_start <= CAST ( $3 AS TIMESTAMP )
                                AND destination = $4");


Warning: pg_prepare(): Query failed: ERROR:  operator does not exist: timestamp without time zone => timestamp without time zone
HINT:  No operator matches the given name and argument type(s). You may need to add explicit type casts. in /home/www/dinesh/UPSReconcileZeroSecondCalls.php on line 38

Voip_calls tablodaki sütun türleri:

call_start     | timestamp without time zone |
call_end       | timestamp without time zone | not null

Ben ne yapıyorum yanlış olarak herhangi bir ipucu? PDO veya MDPD şu anda bir seçenek değildir, unutmayın.

Yazılım sürümleri:

ii  php5                            5.2.6.dfsg.1-1+lenny3      server-side, HTML-embedded scripting languag
ii  libapache2-mod-php5             5.2.6.dfsg.1-1+lenny3      server-side, HTML-embedded scripting languag
ii  php5-pgsql                      5.2.6.dfsg.1-1+lenny3      PostgreSQL module for php5
ii  libpq5                          8.3.8-0lenny1              PostgreSQL C client library
postmaster (PostgreSQL) 8.1.4

2 Cevap

Yerine> = deneyin - Bu soruna neden sizin => operatörü olabilir.

Ayrıca bir ipucu olarak ben daha kolay yerine CAST $ 2 :: timestamp (zaman damgası olarak 2 $) yazmak bulabilirsiniz - (;-) ve yazın daha az var) Beni daha iyi okur için bir PostgreSQL özgü sözdizimi ama

O <= ve => işletmecileri olduğu ortaya çıktı. Bu Doing çalışıyor:

$preCallMatch = pg_prepare($dbcp, 'callMatch',
                            "SELECT duration 
                               FROM voip_calls 
                              WHERE system_id = $1 
                                AND call_start BETWEEN $2 AND $3
                                AND destination = $4");