Re: [Tutor] Noob question

2007-12-10 Thread Amit Saxena
the list > is complete. When you get used to it, it's a bit more concise and > readable, also. > > Sincerely, > e. > > Amit Saxena wrote: > > The simplest way i could think of: > > > > a=["apple","orange","banana"] > > b =

Re: [Tutor] Noob question

2007-12-10 Thread Amit Saxena
The simplest way i could think of: a=["apple","orange","banana"] b = "" for i in range(len(a)): b += a[i] print b Amit On Dec 10, 2007 6:48 AM, Alan Gauld <[EMAIL PROTECTED]> wrote: > "Eric Walstad" <[EMAIL PROTECTED]> wrote > > > You could also achieve the same result of concatenating a

Re: [Tutor] How can I execute a PL/SQL Procedure directly through

2007-07-30 Thread Amit Saxena
cedure. Are you trying to > create it or execute it? > > Kent > > Amit Saxena wrote: > > this is the file content of "metadata.sql" > > > > set serveroutput on > > > > CREATE OR REPLACE PROCEDURE Create_Process_Team (org_id IN VARCHAR2, > &

Re: [Tutor] How can I execute a PL/SQL Procedure directly through

2007-07-30 Thread Amit Saxena
_TYPE values(pt_id,4); END; / On 7/30/07, Amit Saxena <[EMAIL PROTECTED]> wrote: > > It is a complete PL/SQL Procedure which is written in this "metadata.sql" > file > > On 7/30/07, Greg Lindstrom < [EMAIL PROTECTED]> wrote: > > > > > > > > O

Re: [Tutor] How can I execute a PL/SQL Procedure directly through

2007-07-30 Thread Amit Saxena
It is a complete PL/SQL Cursor which is written in this "metadata.sql" file On 7/30/07, Greg Lindstrom <[EMAIL PROTECTED]> wrote: > > > > On 7/30/07, Amit Saxena <[EMAIL PROTECTED]> wrote: > > > > > > I m still not able to run a Procedure &g

Re: [Tutor] How can I execute a PL/SQL Procedure directly through

2007-07-30 Thread Amit Saxena
e, password) <== and here, too > > query = "SELECT name_of_pgSQL_routine(%(argument1)s, %(argument2)s)" > results = db.execute(query, locals()) > > and go from there. Let me know if yo have other questions. > > HTH, > > --greg &g

Re: [Tutor] How can I execute a PL/SQL Procedure directly through

2007-07-30 Thread Amit Saxena
://mail.python.org/mailman/listinfo/tutor > > -- Thanks and Regards, Amit Saxena Senior QA Engineer Ketera Direct: +91 4199 5028 Mobile: +91 99001 18641 [EMAIL PROTECTED] » Visit us at http://www.ketera.com » Watch the demo at http://www.ketera.com/resources/demos.html

[Tutor] How can I execute a PL/SQL Procedure directly through python rather than executing it through Command Prompt

2007-07-30 Thread Amit Saxena
Hi Can anybody help me in how to connect Python to oracle and then to execute an already existing PL/SQL Procedure through Python. -- Thanks and Regards, Amit Saxena Senior QA Engineer Ketera Direct: +91 4199 5028 Mobile: +91 99001 18641 [EMAIL PROTECTED] » Visit us at http://www.ketera.com

Re: [Tutor] Pop Up Window Problem

2007-07-24 Thread Amit Saxena
BoxSelect("buyer", "AU Office") ie.imageClick("search-page.gif") on clicking this image, i get that Pop Up window and now i m in a fix what to do next as the browser is not able to identify the window, I tried the cModal Popup library but no help Amit O

[Tutor] Pop Up Window Problem

2007-07-24 Thread Amit Saxena
Hi, This is Amit Saxena here, I am working as a Senior QA Engineer with Ketera Technologies, Bangalore. I am trying to automate a Test Scenario using Python 2.5, in that particular scenario there is a Pop Up window which i am not able to handle, can you please help in that. For automation