You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sql.go 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. // Copyright (C) 2013-2018 by Maxim Bublis <b@codemonkey.ru>
  2. //
  3. // Permission is hereby granted, free of charge, to any person obtaining
  4. // a copy of this software and associated documentation files (the
  5. // "Software"), to deal in the Software without restriction, including
  6. // without limitation the rights to use, copy, modify, merge, publish,
  7. // distribute, sublicense, and/or sell copies of the Software, and to
  8. // permit persons to whom the Software is furnished to do so, subject to
  9. // the following conditions:
  10. //
  11. // The above copyright notice and this permission notice shall be
  12. // included in all copies or substantial portions of the Software.
  13. //
  14. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  15. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  16. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  17. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  18. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  19. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  20. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  21. package uuid
  22. import (
  23. "database/sql/driver"
  24. "fmt"
  25. )
  26. // Value implements the driver.Valuer interface.
  27. func (u UUID) Value() (driver.Value, error) {
  28. return u.String(), nil
  29. }
  30. // Scan implements the sql.Scanner interface.
  31. // A 16-byte slice is handled by UnmarshalBinary, while
  32. // a longer byte slice or a string is handled by UnmarshalText.
  33. func (u *UUID) Scan(src interface{}) error {
  34. switch src := src.(type) {
  35. case []byte:
  36. if len(src) == Size {
  37. return u.UnmarshalBinary(src)
  38. }
  39. return u.UnmarshalText(src)
  40. case string:
  41. return u.UnmarshalText([]byte(src))
  42. }
  43. return fmt.Errorf("uuid: cannot convert %T to UUID", src)
  44. }
  45. // NullUUID can be used with the standard sql package to represent a
  46. // UUID value that can be NULL in the database
  47. type NullUUID struct {
  48. UUID UUID
  49. Valid bool
  50. }
  51. // Value implements the driver.Valuer interface.
  52. func (u NullUUID) Value() (driver.Value, error) {
  53. if !u.Valid {
  54. return nil, nil
  55. }
  56. // Delegate to UUID Value function
  57. return u.UUID.Value()
  58. }
  59. // Scan implements the sql.Scanner interface.
  60. func (u *NullUUID) Scan(src interface{}) error {
  61. if src == nil {
  62. u.UUID, u.Valid = Nil, false
  63. return nil
  64. }
  65. // Delegate to UUID Scan function
  66. u.Valid = true
  67. return u.UUID.Scan(src)
  68. }