Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# e6data Python Connector

![version](https://img.shields.io/badge/version-1.0.5-blue.svg)
![version](https://img.shields.io/badge/version-1.0.6-blue.svg)

## Introduction

Expand Down
4 changes: 2 additions & 2 deletions e6xdb/e6x.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@ def commit(self):
"""We do not support transactions, so this does nothing."""
pass

def cursor(self, db_name=None):
def cursor(self, db_name=None, catalog_name=None):
"""Return a new :py:class:`Cursor` object using the connection."""
return Cursor(self, database=db_name)
return Cursor(self, database=db_name, catalog_name=catalog_name)

def rollback(self):
raise Exception("e6xdb does not support transactions") # pragma: no cover
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

envstring = lambda var: os.environ.get(var) or ""

VERSION = [1, 0, 5]
VERSION = [1, 0, 6]


def get_long_desc():
Expand Down