← Back to team overview

openlp-core team mailing list archive

[Bug 849448] [NEW] win32: include psycopg2 (postgresql) support

 

Public bug reported:

Since we include mysql support in the windows build, we could also
include support for postgresql database (psycopg2 module).

To include it, it should be enough to install pyscopg2 bindings and use
latest svn version of pyinstaller to create windows builds.

I tested simple example with including psycopg2 with sqlalchemy and it seems working.
Winxp, python 2.7, sqlalchemy 0.7.1, psycopg2 2.4.2 from http://www.stickpeople.com/projects/python/win-psycopg/

Tested code example:

import sqlalchemy


# import mysql and postgreql bindings
__import__('MySQLdb')
__import__('psycopg2')

** Affects: openlp
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of OpenLP
Core, which is subscribed to OpenLP.
https://bugs.launchpad.net/bugs/849448

Title:
  win32: include psycopg2 (postgresql) support

Status in OpenLP - Worship Presentation Software:
  New

Bug description:
  Since we include mysql support in the windows build, we could also
  include support for postgresql database (psycopg2 module).

  To include it, it should be enough to install pyscopg2 bindings and
  use latest svn version of pyinstaller to create windows builds.

  I tested simple example with including psycopg2 with sqlalchemy and it seems working.
  Winxp, python 2.7, sqlalchemy 0.7.1, psycopg2 2.4.2 from http://www.stickpeople.com/projects/python/win-psycopg/

  Tested code example:

  import sqlalchemy

  
  # import mysql and postgreql bindings
  __import__('MySQLdb')
  __import__('psycopg2')

To manage notifications about this bug go to:
https://bugs.launchpad.net/openlp/+bug/849448/+subscriptions


Follow ups

References