Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #16229

Re: my new project, is this the right way?

Path csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <rosuav@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.005
X-Spam-Evidence '*H*': 0.99; '*S*': 0.00; 'python.': 0.04; '(using': 0.05; 'postgresql': 0.05; 'python': 0.08; 'keys,': 0.09; 'php,': 0.09; 'am,': 0.12; 'c++': 0.12; 'received:209.85.210.174': 0.13; 'received:mail-iy0-f174.google.com': 0.13; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'pgsql': 0.16; 'wrote:': 0.18; 'header:In-Reply-To:1': 0.22; 'etc,': 0.23; 'command': 0.24; 'sat,': 0.25; 'code,': 0.27; 'message-id:@mail.gmail.com': 0.28; 'nov': 0.29; 'subject:?': 0.31; 'thanks': 0.31; "i've": 0.31; 'actual': 0.32; 'to:addr:python-list': 0.34; 'subject:project': 0.34; 'basics': 0.37; 'but': 0.37; 'with.': 0.37; 'received:google.com': 0.37; 'purposes': 0.38; 'received:209.85': 0.38; 'primary': 0.38; 'first.': 0.39; 'received:209': 0.40; 'to:addr:python.org': 0.40; 'once': 0.60; '2011': 0.61; 'choice.': 0.64; '26,': 0.67; 'information,': 0.67; 'subject:this': 0.74; 'adapter': 0.84
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=9AoRG33ZsG5xvahAM2uvk40xOzTlXYimNgjzZ7lLavk=; b=lEPTc23UlgIcIOmEfsWQvb8F7f9XFomUP9t6ajsX+prh4tFgH2WlFUkHKf9EYs13/M UumXLXYzGTMYqu3VSzvpmiEpVgGGLXXJmfSLLtYNJ91HRECrk7kBq8TRsZGzS1Zxsk2P QwTeLm9gq20CKkHLsvVmARt1w6lFD77Cw1QAs=
MIME-Version 1.0
In-Reply-To <jaod4j$37c$1@news.albasani.net>
References <4ec0f070$0$1378$4fafbaef@reader2.news.tin.it> <mailman.2696.1321268146.27778.python-list@python.org> <jaod4j$37c$1@news.albasani.net>
Date Sat, 26 Nov 2011 02:49:43 +1100
Subject Re: my new project, is this the right way?
From Chris Angelico <rosuav@gmail.com>
To python-list@python.org
Content-Type text/plain; charset=ISO-8859-1
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.12
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.3046.1322236186.27778.python-list@python.org> (permalink)
Lines 14
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1322236186 news.xs4all.nl 6869 [2001:888:2000:d::a6]:48471
X-Complaints-To abuse@xs4all.nl
Xref x330-a1.tempe.blueboxinc.net comp.lang.python:16229

Show key headers only | View raw


On Sat, Nov 26, 2011 at 2:44 AM, HoneyMonster <someone@someplace.invalid> wrote:
> Just for information, PostgreSQL works very well indeed with Psycopg (a
> PostgreSQL adapter for Python), but for learning purposes straightforward
> PSQL is best to start with.

Thanks for that. I've used PgSQL from C++ (using libpqxx), PHP, Pike,
and the command line, but not from Python. (Yeah, a lot of Ps in
that.)

Once you start looking to write actual code, Python will be an
excellent choice. But master the basics of
database/schema/table/column, primary keys, etc, etc, etc, first.

ChrisA

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

my new project, is this the right way? Tracubik <affdfsdfdsfsd@b.com> - 2011-11-14 10:41 +0000
  Re: my new project, is this the right way? Chris Angelico <rosuav@gmail.com> - 2011-11-14 21:55 +1100
    Re: my new project, is this the right way? HoneyMonster <someone@someplace.invalid> - 2011-11-25 15:44 +0000
      Re: my new project, is this the right way? Chris Angelico <rosuav@gmail.com> - 2011-11-26 02:49 +1100
  Re: my new project, is this the right way? Redcat <redcat@catfolks.net> - 2011-11-14 15:47 +0000
  Re: my new project, is this the right way? Jon Clements <joncle@googlemail.com> - 2011-11-14 08:37 -0800
  Re: my new project, is this the right way? Miki Tebeka <miki.tebeka@gmail.com> - 2011-11-14 09:48 -0800
  Re: my new project, is this the right way? rusi <rustompmody@gmail.com> - 2011-11-25 09:01 -0800
    Re: my new project, is this the right way? Roy Smith <roy@panix.com> - 2011-11-25 12:16 -0500
      Re: my new project, is this the right way? rusi <rustompmody@gmail.com> - 2011-11-25 20:48 -0800
    Re: my new project, is this the right way? 88888 Dihedral <dihedral88888@googlemail.com> - 2011-11-26 15:41 -0800
      Re: my new project, is this the right way? Dave Angel <d@davea.name> - 2011-11-26 21:35 -0500
        Re: my new project, is this the right way? Roy Smith <roy@panix.com> - 2011-11-26 21:49 -0500
          Re: my new project, is this the right way? 88888 Dihedral <dihedral88888@googlemail.com> - 2011-11-26 19:14 -0800
            Re: my new project, is this the right way? Chris Angelico <rosuav@gmail.com> - 2011-11-27 14:24 +1100
            Re: my new project, is this the right way? Dave Angel <d@davea.name> - 2011-11-26 22:27 -0500
            Re: my new project, is this the right way? Roy Smith <roy@panix.com> - 2011-11-26 22:41 -0500
      Re: my new project, is this the right way? Matt Joiner <anacrolix@gmail.com> - 2011-11-27 15:03 +1100
        Re: my new project, is this the right way? 88888 Dihedral <dihedral88888@googlemail.com> - 2011-11-27 00:29 -0800
          Re: my new project, is this the right way? 88888 Dihedral <dihedral88888@googlemail.com> - 2011-11-27 00:49 -0800
            Re: my new project, is this the right way? 88888 Dihedral <dihedral88888@googlemail.com> - 2011-11-28 00:51 -0800
            Re: my new project, is this the right way? 88888 Dihedral <dihedral88888@googlemail.com> - 2011-11-28 00:51 -0800
          Re: my new project, is this the right way? 88888 Dihedral <dihedral88888@googlemail.com> - 2011-11-27 00:49 -0800
        Re: my new project, is this the right way? 88888 Dihedral <dihedral88888@googlemail.com> - 2011-11-27 00:29 -0800

csiph-web