DDC string // Dewey Decimal Classification
Description string // Back cover / inside flap blurb, describing the book
Genre string // e.g. "adventure", "historical", "mystery", "romance", "sf" (Science Fiction)
+ Language string
LCC string // Library of Congress Classification
SeriesName string
Title string
// ---------------------------------------------------------------------------
type Field string
const (
- Author, Series, Title Field = "aut", "ser", "tit"
+ Author, Language, Series, Title Field = "aut", "lan", "ser", "tit"
)
func (f Field) String() string {
}
func queryBooksByIds(ids []int) []Book {
- query := `SELECT s.age,a.grouping,a.reading,a.sort,b.cover,c.ddc,b.description,s.genre,c.lcc,s.descr,b.title,b.volume
+ query := `SELECT s.age,a.grouping,a.reading,a.sort,b.cover,c.ddc,b.description,s.genre,b.language,c.lcc,s.descr,b.title,b.volume
FROM Authors a
INNER JOIN Books b ON a.id=b.author
LEFT OUTER JOIN Classifications c ON c.id=b.classification
row := ps.QueryRow(id)
- var age, grouping, reading, sort, ddc, description, genre, lcc, name, title, volume sql.NullString
+ var age, grouping, reading, sort, ddc, description, genre, language, lcc, name, title, volume sql.NullString
var cover sql.NullInt64
- err = row.Scan(&age, &grouping, &reading, &sort, &cover, &ddc, &description, &genre, &lcc, &name, &title, &volume)
+ err = row.Scan(&age, &grouping, &reading, &sort, &cover, &ddc, &description, &genre, &language, &lcc, &name, &title, &volume)
if err != nil {
report("Error: Failed to read book:" + strconv.Itoa(id) + ":", err)
} else {
b.DDC = nsVal(ddc)
b.Description = nsVal(description)
b.Genre = nsVal(genre)
+ b.Language = nsVal(language)
b.LCC = nsVal(lcc)
b.SeriesName = nsVal(name)
b.Title = nsVal(title)
case Author:
query += " UPPER(a.grouping) LIKE UPPER($" + strconv.Itoa(i + 1) + ")"
text = strings.Replace(text, " ", "", -1) // Remove spaces
+ case Language:
+ query += " UPPER(b.language) LIKE UPPER($" + strconv.Itoa(i + 1) + ")"
case Series:
query += " UPPER(s.descr) LIKE UPPER($" + strconv.Itoa(i + 1) + ")"
case Title: