View Single Post
Old 11-04-2014, 09:02 PM   #2
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 45,443
Karma: 27757438
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
dont use get/set metadata, they are very ineeficient if all you want to do is change a couple of fields. Use db.new_api.field_for('title', book_id) and db.new_api.field_for('authors') and to change,

db.new_api.set_field('title', {book_id:value})
db.new_api.set_field('authors', {book_id:value})

Then use 'title_sort' and 'author_sort' to work with those fields.

ANd to set the window title use

self.setWindowTitle('whatever')
kovidgoyal is online now   Reply With Quote