Skip to content

Commit e35ed9d

Browse files
docs: fix dbapi examples notebook (#134)
* fix dbapi examples notebook * fix typo
1 parent 258bcfa commit e35ed9d

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

examples/dbapi.ipynb

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -187,13 +187,9 @@
187187
" select * from test_table where id > 2;\n",
188188
"\"\"\"\n",
189189
")\n",
190-
"print(cursor._row_sets[0][2])\n",
191-
"print(cursor._row_sets[1][2])\n",
192-
"print(cursor._rows)\n",
193-
"# print(\"First query: \", cursor.fetchall())\n",
190+
"print(\"First query: \", cursor.fetchall())\n",
194191
"assert cursor.nextset()\n",
195-
"print(cursor._rows)\n",
196-
"# print(\"Secont query: \", cursor.fetchall())\n",
192+
"print(\"Second query: \", cursor.fetchall())\n",
197193
"assert cursor.nextset() is None"
198194
]
199195
},

0 commit comments

Comments
 (0)