On Monday 05 November 2007 15:25:13 [EMAIL PROTECTED] wrote:
> Hi,
> i have 2 questions.
>
> 1) is there a possibiliti' to start my own (complex) sql update script.
> example
>
> insert into webstats (uname,tipoctr)
> (Select
> cbl.codice,
> 1+IFNULL((select 1 from collab2 where cbl
On Mon, Nov 05, 2007 at 03:25:13PM +0100, [EMAIL PROTECTED] wrote:
> 1) is there a possibiliti' to start my own (complex) sql update script.
[skip]
> 2) How can i start procedures from sqlobject.
connection.query("INSERT...")
result = connection.queryAll("SELECT...")
for row in result:
Hi,
i have 2 questions.
1) is there a possibiliti' to start my own (complex) sql update script.
example
insert into webstats (uname,tipoctr)
(Select
cbl.codice,
1+IFNULL((select 1 from collab2 where cbl.codice =
collab2.codice),0)
from collab cbl);
2) How can i start procedure