Re: Queries

2009-02-28 Thread mmcclaf
So basically you are complaining that groups don't pick up post by GMail users? As for the SQL thing, you still don't see how I am linking this to SQL? I have to make in your terms: a textual representation of the statements I'd make in SQL. The statement I made with the bold SELECT, etc, replace

Re: Queries

2009-02-27 Thread mmcclaf
This came in the Python groups, and I put one up in the database group, since I will later have to use Python to access the SQL file, so therefore tackling one thing at a time. Also, there were no answers that were coming up in the .database group. On top of that: Really? You can have

Re: Queries

2009-02-26 Thread mmcclaf
On Feb 26, 7:51 am, Steve Holden st...@holdenweb.com wrote: Murray wrote: [top-posting corrected] -Original Message- From: Gary Herron [mailto:gher...@islandtraining.com] Sent: Thursday, February 26, 2009 1:46 AM To: mmcclaf; python-l...@python.org Subject: Re: Queries

Re: Queries

2009-02-26 Thread mmcclaf
Another problem with this assignment... I have to list all the ships mentioned in the database. All the ships may not appear in the Ships relations... I said the following in algebraic expression SELECT name(Ships UNION (SELECT ship (Outcome UNION(SELECT class (Classes))) Would that work? --

Re: Using cPickle

2009-02-25 Thread mmcclaf
Thanks! All fixed! -- http://mail.python.org/mailman/listinfo/python-list

Queries

2009-02-25 Thread mmcclaf
I have to make some queries for 4 tables I have. The following relations are: Classes(class, type, country, numGuns, bore, displacement) Ships (name, class, launched) Battles (name, date) Outcomes (ship, battle, result) The three queries I'm stuck on are the following: 1. Find the classes that

Using cPickle

2009-02-06 Thread mmcclaf
Hi there, I have to make a small database using cPickle. I'm having troubles trying to read in the information if it's more than one line. I'm pretty sure it's in the line for line in stuff: Can anyone help me out? Basically the end result is wanting it to look something like what is down below

Re: Using cPickle

2009-02-06 Thread mmcclaf
On Feb 6, 10:25 am, Steve Holden st...@holdenweb.com wrote: mmcclaf wrote: Hi there, I have to make a small database using cPickle. I'm having troubles trying to read in the information if it's more than one line. I'm pretty sure it's in the line for line in stuff: Can anyone help me

Re: Using cPickle

2009-02-06 Thread mmcclaf
On Feb 6, 3:09 pm, MRAB goo...@mrabarnett.plus.com wrote: mmcclaf wrote: On Feb 6, 10:25 am, Steve Holden st...@holdenweb.com wrote: mmcclaf wrote: Hi there, I have to make a small database using cPickle. I'm having troubles trying to read in the information if it's more than one line