forked from openlp/openlp
More Fixes
Hacks for Unicode problem. bzr-revno: 256
This commit is contained in:
parent
592d329baf
commit
5123bcdfbb
@ -37,11 +37,16 @@ class EditSongForm(QWidget, Ui_EditSongDialog):
|
|||||||
self.initialise()
|
self.initialise()
|
||||||
|
|
||||||
def initialise(self):
|
def initialise(self):
|
||||||
a=1
|
list = self.songmanager.get_authors()
|
||||||
|
self.AuthorsSelectionComboItem.clear()
|
||||||
|
#print list
|
||||||
|
for l in list:
|
||||||
|
self.AuthorsSelectionComboItem.addItem(str(l[1]))
|
||||||
|
|
||||||
def load_song(self, songid):
|
def load_song(self, songid):
|
||||||
self.songid = songid
|
self.songid = songid
|
||||||
song = self.songmanager.get_song(songid)
|
song = self.songmanager.get_song(songid)
|
||||||
print song
|
#print song
|
||||||
self.TitleEditItem.setText(song[1])
|
self.TitleEditItem.setText(song[1])
|
||||||
self.LyricsTextEdit.setText(song[2])
|
self.LyricsTextEdit.setText(song[2])
|
||||||
self.CopyrightEditItem.setText(song[3])
|
self.CopyrightEditItem.setText(song[3])
|
||||||
|
@ -22,9 +22,10 @@ import datetime
|
|||||||
import logging
|
import logging
|
||||||
import string
|
import string
|
||||||
|
|
||||||
from sqlalchemy import *
|
#from sqlalchemy import *
|
||||||
from sqlalchemy.sql import select
|
#from sqlalchemy.sql import select
|
||||||
from sqlalchemy.orm import sessionmaker, mapper
|
#from sqlalchemy.orm import sessionmaker, mapper
|
||||||
|
import sqlite3
|
||||||
|
|
||||||
from openlp.plugins.bibles.lib.biblecommon import BibleCommon
|
from openlp.plugins.bibles.lib.biblecommon import BibleCommon
|
||||||
from openlp.core.utils import ConfigHelper
|
from openlp.core.utils import ConfigHelper
|
||||||
@ -36,7 +37,7 @@ class BibleDBException(Exception):
|
|||||||
class BibleInvalidDatabaseError(Exception):
|
class BibleInvalidDatabaseError(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
metadata = MetaData()
|
#metadata = MetaData()
|
||||||
#authors = Table('authors', metadata, autoload=True)
|
#authors = Table('authors', metadata, autoload=True)
|
||||||
|
|
||||||
class SongDBImpl(BibleCommon):
|
class SongDBImpl(BibleCommon):
|
||||||
@ -47,22 +48,30 @@ class SongDBImpl(BibleCommon):
|
|||||||
# Connect to database
|
# Connect to database
|
||||||
self.songfile = os.path.join(songpath, "songs."+suffix)
|
self.songfile = os.path.join(songpath, "songs."+suffix)
|
||||||
log.debug( "Load Song on path %s", self.songfile)
|
log.debug( "Load Song on path %s", self.songfile)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#c = conn.cursor()
|
||||||
if btype == 'sqlite':
|
if btype == 'sqlite':
|
||||||
self.db = create_engine("sqlite:///"+self.songfile)
|
self.db = sqlite3.connect(self.songfile)
|
||||||
elif btype == 'mysql':
|
#self.db = create_engine("sqlite:///"+self.songfile, convert_unicode=False)
|
||||||
self.db = create_engine("mysql://tim:@192.168.0.100:3306/openlp_rsv_bible")
|
#elif btype == 'mysql':
|
||||||
|
#self.db = create_engine("mysql://tim:@192.168.0.100:3306/openlp_rsv_bible")
|
||||||
else:
|
else:
|
||||||
raise BibleInvalidDatabaseError("Database not mysql or sqlite")
|
raise BibleInvalidDatabaseError("Database not mysql or sqlite")
|
||||||
self.db.echo = True
|
#c = conn.cursor()
|
||||||
|
self.db.text_factory = str
|
||||||
|
#self.db.echo = True
|
||||||
|
#self.db.convert_unicode=False
|
||||||
#self.metadata = metaData()
|
#self.metadata = metaData()
|
||||||
metadata.bind = self.db
|
#metadata.bind = self.db
|
||||||
metadata.bind.echo = False
|
#metadata.bind.echo = False
|
||||||
self.Session = sessionmaker()
|
#self.Session = sessionmaker()
|
||||||
self.Session.configure(bind=self.db)
|
#self.Session.configure(bind=self.db)
|
||||||
self.authors = Table('authors', metadata, autoload=True)
|
#self.authors = Table('authors', metadata, autoload=True)
|
||||||
self.settings = Table('settings', metadata, autoload=True)
|
#self.settings = Table('settings', metadata, autoload=True)
|
||||||
self.songauthors = Table('songauthors', metadata, autoload=True)
|
#self.songauthors = Table('songauthors', metadata, autoload=True)
|
||||||
self.songs = Table('songs', metadata, autoload=True)
|
#self.songs = Table('songs', metadata, autoload=True)
|
||||||
|
|
||||||
def create_tables(self):
|
def create_tables(self):
|
||||||
log.debug( "createTables")
|
log.debug( "createTables")
|
||||||
@ -134,9 +143,25 @@ class SongDBImpl(BibleCommon):
|
|||||||
|
|
||||||
def get_song(self, songid):
|
def get_song(self, songid):
|
||||||
log.debug( "get_song ")
|
log.debug( "get_song ")
|
||||||
metadata.bind.echo = False
|
#metadata.bind.echo = False
|
||||||
s = text (""" select * FROM songs where songid = :c """)
|
#s = text (""" select * FROM songs where songid = :c """)
|
||||||
return self.db.execute(s,c=songid ).fetchone()
|
s = " select * FROM songs where songid = " +str(songid)
|
||||||
|
return self.db.cursor().execute(s).fetchone()
|
||||||
|
|
||||||
|
def get_authors(self):
|
||||||
|
log.debug( "get_authors ")
|
||||||
|
#metadata.bind.echo = False
|
||||||
|
#s = text (""" select * FROM authors order by authorname """)
|
||||||
|
s = """ select * FROM authors order by authorname """
|
||||||
|
return self.db.cursor().execute(s).fetchall()
|
||||||
|
|
||||||
|
def get_song_authors(self, song):
|
||||||
|
log.debug( "get_song_authors ")
|
||||||
|
#metadata.bind.echo = False
|
||||||
|
#s = text (""" select * FROM songauthors where songid = ;c """)
|
||||||
|
s = """ select * FROM songauthors where songid = ;c """
|
||||||
|
return self.db.cursor().execute(s, c=songid).fetchall()
|
||||||
|
|
||||||
|
|
||||||
def get_max_bible_book_verses(self, bookname, chapter):
|
def get_max_bible_book_verses(self, bookname, chapter):
|
||||||
log.debug( "get_max_bible_book_verses %s,%s ", bookname , chapter)
|
log.debug( "get_max_bible_book_verses %s,%s ", bookname , chapter)
|
||||||
@ -183,10 +208,11 @@ class SongDBImpl(BibleCommon):
|
|||||||
|
|
||||||
def get_song_from_title(self,searchtext):
|
def get_song_from_title(self,searchtext):
|
||||||
log.debug( "get_song_from_title %s",searchtext)
|
log.debug( "get_song_from_title %s",searchtext)
|
||||||
metadata.bind.echo = False
|
#metadata.bind.echo = False
|
||||||
searchtext = "%"+searchtext+"%"
|
#s = text (""" SELECT s.songid AS songid, s.songtitle AS songtitle, a.authorname AS authorname FROM songs s OUTER JOIN songauthors sa ON s.songid = sa.songid OUTER JOIN authors a ON sa.authorid = a.authorid WHERE s.songtitle LIKE :t ORDER BY s.songtitle ASC """)
|
||||||
s = text (""" SELECT s.songid AS songid, s.songtitle AS songtitle, a.authorname AS authorname FROM songs s OUTER JOIN songauthors sa ON s.songid = sa.songid OUTER JOIN authors a ON sa.authorid = a.authorid WHERE s.songtitle LIKE :t ORDER BY s.songtitle ASC """)
|
s = ' SELECT s.songid AS songid, s.songtitle AS songtitle, a.authorname AS authorname FROM songs s OUTER JOIN songauthors sa ON s.songid = sa.songid OUTER JOIN authors a ON sa.authorid = a.authorid WHERE s.songtitle LIKE '+"'" +'%'+ searchtext + '%'+ "'"+' ORDER BY s.songtitle ASC'
|
||||||
return self.db.execute(s, t=searchtext).fetchall()
|
print s
|
||||||
|
return self.db.execute(s).fetchall()
|
||||||
|
|
||||||
def get_song_from_author(self,searchtext):
|
def get_song_from_author(self,searchtext):
|
||||||
log.debug( "get_song_from_author %s",searchtext)
|
log.debug( "get_song_from_author %s",searchtext)
|
||||||
|
@ -133,6 +133,18 @@ class SongManager():
|
|||||||
Returns the details of a song
|
Returns the details of a song
|
||||||
"""
|
"""
|
||||||
return self.songDBCache.get_song(songid)
|
return self.songDBCache.get_song(songid)
|
||||||
|
|
||||||
|
def get_authors(self):
|
||||||
|
"""
|
||||||
|
Returns a list of all the authos
|
||||||
|
"""
|
||||||
|
return self.songDBCache.get_authors()
|
||||||
|
|
||||||
|
def get_song_authors(self, songid):
|
||||||
|
"""
|
||||||
|
Returns the details of a song
|
||||||
|
"""
|
||||||
|
return self.songDBCache.get_song_authors(songid)
|
||||||
|
|
||||||
def get_bible_books(self,bible):
|
def get_bible_books(self,bible):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user