Skip to content

Commit 10927e6

Browse files
committed
SNOW-1572213 implement result set iterator (#2052)
1 parent 5f6d2da commit 10927e6

22 files changed

+6352
-380
lines changed

src/snowflake/connector/aio/__init__.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,10 @@
55
from __future__ import annotations
66

77
from ._connection import SnowflakeConnection
8+
from ._cursor import DictCursor, SnowflakeCursor
89

9-
__all__ = [SnowflakeConnection]
10+
__all__ = [
11+
SnowflakeConnection,
12+
SnowflakeCursor,
13+
DictCursor,
14+
]

src/snowflake/connector/aio/_connection.py

Lines changed: 468 additions & 209 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)