| layout | language | permalink | command | related_commands | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
api-command |
Python |
api/python/use/ |
use |
|
{% apibody %} conn.use(db_name) {% endapibody %}
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')