mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-25 18:23:44 +03:00
Merge pull request #7 from tswr/master
Fixing Database class to allow readonly mode
This commit is contained in:
commit
3b82f31ec2
|
@ -18,12 +18,14 @@ class DatabaseException(Exception):
|
||||||
|
|
||||||
class Database(object):
|
class Database(object):
|
||||||
|
|
||||||
def __init__(self, db_name, db_url='http://localhost:8123/', username=None, password=None):
|
def __init__(self, db_name, db_url='http://localhost:8123/', username=None, password=None, readonly=False):
|
||||||
self.db_name = db_name
|
self.db_name = db_name
|
||||||
self.db_url = db_url
|
self.db_url = db_url
|
||||||
self.username = username
|
self.username = username
|
||||||
self.password = password
|
self.password = password
|
||||||
self._send('CREATE DATABASE IF NOT EXISTS `%s`' % db_name)
|
self.readonly = readonly
|
||||||
|
if not self.readonly:
|
||||||
|
self._send('CREATE DATABASE IF NOT EXISTS `%s`' % db_name)
|
||||||
|
|
||||||
def create_table(self, model_class):
|
def create_table(self, model_class):
|
||||||
# TODO check that model has an engine
|
# TODO check that model has an engine
|
||||||
|
|
Loading…
Reference in New Issue
Block a user