You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
(6) |
Sep
|
Oct
(19) |
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(12) |
Feb
(1) |
Mar
(4) |
Apr
(4) |
May
(32) |
Jun
(12) |
Jul
(11) |
Aug
(1) |
Sep
(6) |
Oct
(3) |
Nov
|
Dec
(10) |
2012 |
Jan
(11) |
Feb
(1) |
Mar
(3) |
Apr
(25) |
May
(53) |
Jun
(38) |
Jul
(103) |
Aug
(54) |
Sep
(31) |
Oct
(66) |
Nov
(77) |
Dec
(20) |
2013 |
Jan
(91) |
Feb
(86) |
Mar
(103) |
Apr
(107) |
May
(25) |
Jun
(37) |
Jul
(17) |
Aug
(59) |
Sep
(38) |
Oct
(78) |
Nov
(29) |
Dec
(15) |
2014 |
Jan
(23) |
Feb
(82) |
Mar
(118) |
Apr
(101) |
May
(103) |
Jun
(45) |
Jul
(6) |
Aug
(10) |
Sep
|
Oct
(32) |
Nov
|
Dec
(9) |
2015 |
Jan
(3) |
Feb
(5) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
(9) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
|
2
(1) |
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
(3) |
12
|
13
|
14
|
15
|
16
|
17
(4) |
18
|
19
|
20
|
21
|
22
|
23
|
24
(20) |
25
(8) |
26
(22) |
27
|
28
(2) |
29
(3) |
30
|
31
(3) |
|
|
|
From: Michael P. <mic...@gm...> - 2012-10-17 06:08:24
|
On Wed, Oct 17, 2012 at 3:01 PM, Roger Mayes <rog...@gm...>wrote: > Ok, I put this together in a test action, completely separate from > anything to do with the rest of my code base, just to be sure it's pdo.. > > // $conn = Zend_Db::factory('Pdo_Pgsql', $connArgs); > $conn = new PDO('pgsql:host=localhost;dbname=devdb', 'postgres', > ''); > $statement = $conn->query("select now()"); > echo "<pre>"; > echo print_r($statement->fetchAll(), true); > echo "</pre>"; > $conn = null; > > That script doesn't ... > > Eh, hmm. Nope, that script works fine. Poo. So the problem is with my > code, somehow. Awesome. Meh, yeah, it works with Zend_Db, etc., too. > Well, on the bright side, now zend / php / pdo has been specifically > tested. > Nice to know it works normally. Thanks. -- Michael Paquier http://michael.otacoo.com |
From: Roger M. <rog...@gm...> - 2012-10-17 06:01:45
|
Ok, I put this together in a test action, completely separate from anything to do with the rest of my code base, just to be sure it's pdo.. // $conn = Zend_Db::factory('Pdo_Pgsql', $connArgs); $conn = new PDO('pgsql:host=localhost;dbname=devdb', 'postgres', ''); $statement = $conn->query("select now()"); echo "<pre>"; echo print_r($statement->fetchAll(), true); echo "</pre>"; $conn = null; That script doesn't ... Eh, hmm. Nope, that script works fine. Poo. So the problem is with my code, somehow. Awesome. Meh, yeah, it works with Zend_Db, etc., too. Well, on the bright side, now zend / php / pdo has been specifically tested. On Tue, Oct 16, 2012 at 8:35 PM, Michael Paquier <mic...@gm...>wrote: > > > On Wed, Oct 17, 2012 at 12:09 PM, Shavais Zarathustra <sh...@gm...>wrote: > >> >> I've been trying to get the php pdo driver for postgres (php extension >> pdo_pgsql.so) to work with postgres-xc today, so far with no luck. It >> seems to give me a valid connection, but when I try to use >> $conn->query($sql) or $stmt = $conn->prepare(..) .. $stmt->execute(), no >> exceptions are thrown, even for obviously incorrect sql, and no results are >> fetchable even for trivial sql. From the terminal, psql is working fine, I >> can connect and run sql statements and so on, so it seems like the cluster >> is operating and so forth. >> > I haven't used php with XC for a certain amount of time, but as XC uses > the same connection interface as Postgres, so I do not see why it shouldn't > work. For example I did some tests with jdbc and perl drivers this week and > it was working correctly. > Could you give an example of the SQLs that are not working? Or even a > script? > -- > Michael Paquier > http://michael.otacoo.com > |
From: Michael P. <mic...@gm...> - 2012-10-17 03:35:32
|
On Wed, Oct 17, 2012 at 12:09 PM, Shavais Zarathustra <sh...@gm...>wrote: > > I've been trying to get the php pdo driver for postgres (php extension > pdo_pgsql.so) to work with postgres-xc today, so far with no luck. It > seems to give me a valid connection, but when I try to use > $conn->query($sql) or $stmt = $conn->prepare(..) .. $stmt->execute(), no > exceptions are thrown, even for obviously incorrect sql, and no results are > fetchable even for trivial sql. From the terminal, psql is working fine, I > can connect and run sql statements and so on, so it seems like the cluster > is operating and so forth. > I haven't used php with XC for a certain amount of time, but as XC uses the same connection interface as Postgres, so I do not see why it shouldn't work. For example I did some tests with jdbc and perl drivers this week and it was working correctly. Could you give an example of the SQLs that are not working? Or even a script? -- Michael Paquier http://michael.otacoo.com |
From: Shavais Z. <sh...@gm...> - 2012-10-17 03:09:44
|
I've been trying to get the php pdo driver for postgres (php extension pdo_pgsql.so) to work with postgres-xc today, so far with no luck. It seems to give me a valid connection, but when I try to use $conn->query($sql) or $stmt = $conn->prepare(..) .. $stmt->execute(), no exceptions are thrown, even for obviously incorrect sql, and no results are fetchable even for trivial sql. From the terminal, psql is working fine, I can connect and run sql statements and so on, so it seems like the cluster is operating and so forth. Is pdo_pgsql.so working for you guys? |