mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
parent
5c143530ff
commit
6d44617840
19 changed files with 61 additions and 42 deletions
|
@ -19,6 +19,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|||
package table
|
||||
|
||||
import (
|
||||
"context"
|
||||
"database/sql"
|
||||
"fmt"
|
||||
"strings"
|
||||
|
@ -130,9 +131,9 @@ func (s *SQL) Close() error {
|
|||
return s.db.Close()
|
||||
}
|
||||
|
||||
func (s *SQL) Lookup(val string) (string, bool, error) {
|
||||
func (s *SQL) Lookup(ctx context.Context, val string) (string, bool, error) {
|
||||
var repl string
|
||||
row := s.lookup.QueryRow(val)
|
||||
row := s.lookup.QueryRowContext(ctx, val)
|
||||
if err := row.Scan(&repl); err != nil {
|
||||
if err == sql.ErrNoRows {
|
||||
return "", false, nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue