[PHP-DB] Re: [PEAR-DEV] Re: locking tables between db connections in the same script

2003-09-04 Thread Tomas V.V.Cox
Logon, as the few people who opens more than one connection would probably preffer real new connections (thing that we miss in other drivers). If not, you can always use OCIPLogon. -- Tomas V.V.Cox mailto:[EMAIL PROTECTED] -- PHP Database Mailing List (http://www.php.net

[PHP-DB] Re: [PEAR-DEV] Re: Oracle row limit support

2001-11-29 Thread Tomas V.V.Cox
Manuel Lemos wrote: > > Hello, > > "Tomas V.V.Cox" wrote: > > > > Manuel Lemos wrote: > > > > > > > > > > > > > But it does not work with computed columns like those that apply > > > > > functions (COUNT,

[PHP-DB] Oracle row limit support

2001-11-27 Thread Tomas V.V.Cox
ran a query without the column alias and seems that Oracle names that column with the entire name for ex: "sum(foo)". If that is true the support could be completed. I'll try it when get some free time or if some kind guy could send the output of this: $db = DB::connect("oci8://.

[PHP-DB] Re: [PEAR-DEV] Re: Common DB Abstraction Layer:

2001-11-21 Thread Tomas V.V.Cox
s) with almost no portability problems. Only needs you to do the SQL work in a very standar way and sometimes use PHP code for some things. If someone comes here saying: "hey I implemented this exotic feature for PEAR DB" I don't see the reason for dropping it only bacause is &qu

[PHP-DB] Re: Common DB Abstraction Layer:

2001-11-21 Thread Tomas V.V.Cox
column aliases in conyunction with functions (and a must for assoc fetchs) and this is supported by the code I wrote, for ex: select count(field) as count from foo; Also if Oracle name a sum(foo) column as "sum" will be trivial to add it. Any way I said it later, a real SQL parser wi

[PHP-DB] Re: Common DB Abstraction Layer

2001-11-21 Thread Tomas V.V.Cox
specs of the new resultant layer. Then each team could provide > > their own wrappers to make things easy to their users. That's IMO a > > cooperative behaviour. > > > > Tomas V.V.Cox > > Hi Tomas, Manuel, everyone, > > I think that different programme