Class: DB::MariaDB::Native::Types::JSON
- Inherits:
-
Object
- Object
- DB::MariaDB::Native::Types::JSON
- Defined in:
- lib/db/mariadb/native/types.rb
Instance Method Summary collapse
Instance Method Details
#name ⇒ Object
134 135 136 |
# File 'lib/db/mariadb/native/types.rb', line 134 def name "JSON" end |
#parse(string) ⇒ Object
138 139 140 |
# File 'lib/db/mariadb/native/types.rb', line 138 def parse(string) ::JSON.parse(string, symbolize_names: true) if string end |