Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 536 Bytes

File metadata and controls

29 lines (23 loc) · 536 Bytes
layout language permalink command related_commands
api-command
Python
api/python/use/
use
connect close reconnect repl
connect/
close/
reconnect/
repl/

Command syntax

{% apibody %} conn.use(db_name) {% endapibody %}

Description

Change the default database on this connection.

Example: Change the default database so that we don't need to specify the database when referencing a table.

conn.use('marvel')
r.table('heroes').run(conn) # refers to r.db('marvel').table('heroes')