Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 18 Dec 2009 19:22:02 +0000 (UTC)
From:      Pav Lucistnik <pav@FreeBSD.org>
To:        ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: ports/databases Makefile ports/databases/py-postgresql Makefile distinfo pkg-descr pkg-plist
Message-ID:  <200912181922.nBIJM2I3038051@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
pav         2009-12-18 19:22:02 UTC

  FreeBSD ports repository

  Modified files:
    databases            Makefile 
  Added files:
    databases/py-postgresql Makefile distinfo pkg-descr pkg-plist 
  Log:
  Pure Python
  All code, at first, is written in pure Python so that py-postgresql will work
  anywhere that you can install Python 3. Optimizations in C are made where
  needed, but are always optional.
  
  Prepared Statements
  Using the PG-API interface, protocol-level prepared statements may be created
  and used multiple times. db.prepare(sql)(*args)
  
  COPY Support
  Use the convenient COPY interface to directly copy data from one connection to
  another. No intermediate files or tricks are necessary.
  
  Arrays and Composite Typescw
  Arrays and composites are fully supported. Queries requesting them will returns
  objects that provide access to the elements within.
  
  "pg_python" Quick Console
  Get a Python console with a connection to PostgreSQL for quick tests and simple
  scripts.
  
  WWW: http://python.projects.postgresql.org/
  
  PR:             ports/137782
  Submitted by:   Volodymyr Kostyrko <c.kworr@gmail.com>
  
  Revision  Changes    Path
  1.818     +1 -0      ports/databases/Makefile
  1.1       +27 -0     ports/databases/py-postgresql/Makefile (new)
  1.1       +3 -0      ports/databases/py-postgresql/distinfo (new)
  1.1       +22 -0     ports/databases/py-postgresql/pkg-descr (new)
  1.1       +258 -0    ports/databases/py-postgresql/pkg-plist (new)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200912181922.nBIJM2I3038051>