Method: Libsql::Database#close

Defined in:
lib/libsql/database.rb

#closeObject

Close the database



170
171
172
173
174
175
# File 'lib/libsql/database.rb', line 170

def close
  if open? then
    @api.close
    @open = false
  end
end