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
119 120 121 |
# File 'lib/db/mariadb/native/types.rb', line 119 def name "JSON" end |
#parse(string) ⇒ Object
123 124 125 |
# File 'lib/db/mariadb/native/types.rb', line 123 def parse(string) ::JSON.parse(string, symbolize_names: true) if string end |