pyodbc 是否有执行标量函数

发布于 2024-11-07 06:18:45 字数 72 浏览 0 评论 0原文

pyodbc 有执行标量函数吗?

.net 中的 sql lib 上有类似executescalar 的东西吗?

Does pyodbc have an execute scalar function?

something like executescalar on the sql lib in .net?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦里南柯 2024-11-14 06:18:45

pyodbc 游标有一个 fetchone() 方法。

cursor.execute("select user_name from users where user_id=?", userid)
row = cursor.fetchone()
if row:
    print row.user_name 
    # or print row[0]

The pyodbc cursor has a fetchone() method.

cursor.execute("select user_name from users where user_id=?", userid)
row = cursor.fetchone()
if row:
    print row.user_name 
    # or print row[0]
孤城病女 2024-11-14 06:18:45

我不这么认为,但是 sqlalchemy 确实如此(除了使用 ORM 等,它还可以用作一个方便的 DB API 库的高级接口)。举个例子:

import sqlalchemy

# using mssql as an example because sqlalchemy uses pyodbc as the default driver for MS Sql Server
engine = sqlalchemy.create_engine("mssql://myserver/mydb")
# first column of first row is returned
username = engine.scalar("select username from users where userid = 1")

I don't think so, but sqlalchemy does (apart from using the ORM etc., it can also be used as a handy higher level interface to DB API libraries). As an example:

import sqlalchemy

# using mssql as an example because sqlalchemy uses pyodbc as the default driver for MS Sql Server
engine = sqlalchemy.create_engine("mssql://myserver/mydb")
# first column of first row is returned
username = engine.scalar("select username from users where userid = 1")
够运 2024-11-14 06:18:45

您可以像这样简化 pyodbc 调用:

name = cursor.execute("select user_name from users where user_id=?", userid).fetchval()

因为

fetchval()

如果有则返回第一行的第一列
结果

*执行(sql,参数)

准备并执行 SQL 语句,返回 Cursor 对象本身

You can simplify the pyodbc call like this:

name = cursor.execute("select user_name from users where user_id=?", userid).fetchval()

because

fetchval()

Returns the first column of the first row if there are
results

and

*execute(sql, parameters)

Prepares and executes a SQL statement, returning the Cursor object itself

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文