1
0
Fork 0

Search unicode data using name

This commit is contained in:
Daniele Tricoli 2015-09-21 21:59:29 +02:00
parent bdcb29a5f5
commit e910e31591
1 changed files with 35 additions and 0 deletions

View File

@ -2,7 +2,9 @@ package sql // import "eriol.xyz/piken/sql"
import (
"database/sql"
"fmt"
"os"
"strconv"
"time"
_ "github.com/mattn/go-sqlite3"
@ -50,6 +52,7 @@ const (
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`
createLastUpdateQuery = `INSERT INTO last_update (filename, date) VALUES (?, ?)`
getLastUpdateQuery = `SELECT date FROM last_update WHERE filename = ?`
getUnicodeQuery = `SELECT id, name, category FROM unicode_data WHERE name LIKE ?`
)
type Store struct {
@ -151,3 +154,35 @@ func (s *Store) GetLastUpdate(filename string) (time.Time, error) {
return tp, nil
}
// Search unicode data using name.
func (s *Store) SearchUnicode(name string) (records [][]string, err error) {
var r string
name = fmt.Sprintf("%%%s%%", name)
rows, err := s.db.Query(getUnicodeQuery, name)
defer rows.Close()
if err != nil {
return [][]string{}, err
}
for rows.Next() {
var id, name, category string
err = rows.Scan(&id, &name, &category)
s, err := strconv.ParseInt(id, 16, 32)
if err != nil {
return [][]string{}, err
}
r = fmt.Sprintf("%c", s)
row := append([]string{}, id, name, category, r)
records = append(records, row)
}
return records, nil
}