On Sat, Jan 9, 2010 at 9:07 AM, J. Cliff Dyer wrote:
> On Sat, 2010-01-09 at 07:59 -0500, Victor Subervi wrote:
> > On Fri, Jan 8, 2010 at 4:44 PM, J. Clifford Dyer
> > wrote:
> > Victor Subervi wrote:
> > > Hi;
> > > I have this line of code:
> > > sql = 'select
On Sat, 2010-01-09 at 07:59 -0500, Victor Subervi wrote:
> On Fri, Jan 8, 2010 at 4:44 PM, J. Clifford Dyer
> wrote:
> Victor Subervi wrote:
> > Hi;
> > I have this line of code:
> > sql = 'select Name, Price from %sPackages where ID=%s;' %
> (store, pid)
>
On Fri, Jan 08, 2010 at 03:32:34PM -0400, Victor Subervi wrote regarding
Another Screwy Problem:
> Date: Fri, 8 Jan 2010 15:32:34 -0400
> From: Victor Subervi
> To: python-list
> Subject: Another Screwy Problem
>
>Hi;
>I have this line of code:
> sql =
Victor Subervi wrote:
> Hi;
> I have this line of code:
> sql = 'select Name, Price from %sPackages where ID=%s;' % (store, pid)
> which prints to this:
> select Name, Price from productsPackages where ID=1;
> which when I enter it into the MySQL interpreter gives me this:
> mysql> select Name, P
Victor Subervi wrote:
> Hi;
> I have this line of code:
> sql = 'select Name, Price from %sPackages where ID=%s;' % (store, pid)
> which prints to this:
> select Name, Price from productsPackages where ID=1;
> which when I enter it into the MySQL interpreter gives me this:
> mysql> select Name, P
Hi;
I have this line of code:
sql = 'select Name, Price from %sPackages where ID=%s;' % (store, pid)
which prints to this:
select Name, Price from productsPackages where ID=1;
which when I enter it into the MySQL interpreter gives me this:
mysql> select Name, Price from productsPackages where ID=