如何检查数据库是否已经存在
How to check if database already exists
我正在编写一个 Python 小程序,用于将一些文档加载到 couchdb 中。
检查具有特定名称的数据库是否已经存在会非常方便,因此我可以创建一个新数据库或打开现有数据库。我想做的是这样的:
import couchdb
def connect(url, dbName):
server = couchdb.Server(url)
if dbName exists: # how do I do this?
return server[dbName]
else:
return server.create(dbName)
我知道 try-except 块可以解决问题,但有没有更优雅的方法?
您可以这样做:
try:
couch = couchdb.Server() # assuming localhost
db = couch['existent']
except:
db = couch.create('somedb')
我能想到的最简单的方法是:
import couchdb
server = couchdb.Server("http://localhost:5984")
"dataBaseName" in server
Return True
如果存在同名数据库,False
否则
https://github.com/djc/couchdb-python/blob/master/couchdb/client.py#L90-L101
我正在编写一个 Python 小程序,用于将一些文档加载到 couchdb 中。 检查具有特定名称的数据库是否已经存在会非常方便,因此我可以创建一个新数据库或打开现有数据库。我想做的是这样的:
import couchdb
def connect(url, dbName):
server = couchdb.Server(url)
if dbName exists: # how do I do this?
return server[dbName]
else:
return server.create(dbName)
我知道 try-except 块可以解决问题,但有没有更优雅的方法?
您可以这样做:
try:
couch = couchdb.Server() # assuming localhost
db = couch['existent']
except:
db = couch.create('somedb')
我能想到的最简单的方法是:
import couchdb
server = couchdb.Server("http://localhost:5984")
"dataBaseName" in server
Return True
如果存在同名数据库,False
否则
https://github.com/djc/couchdb-python/blob/master/couchdb/client.py#L90-L101