We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b01a8a0 commit ca01206Copy full SHA for ca01206
libsql_experimental.pyi
@@ -45,6 +45,9 @@ class Connection:
45
@property
46
def in_transaction(self) -> bool: ...
47
48
+ @property
49
+ def autocommit(self) -> int: ...
50
+
51
def commit(self) -> None: ...
52
def cursor(self) -> Cursor: ...
53
def sync(self) -> None: ...
@@ -61,5 +64,6 @@ def connect(database: str,
61
64
sync_url: str = ...,
62
65
sync_interval: float = ...,
63
66
auth_token: str = ...,
- encryption_key: str = ...) -> Connection:
67
+ encryption_key: str = ...,
68
+ autocommit: int = ...) -> Connection:
69
"""Open a new libSQL connection, return a Connection object."""
0 commit comments