admin管理员组文章数量:1344979
Have an async connection pool in FastApi application. Using python-oracledb async connection pool (thin mode).
Trying to call Connection.gettype(name)
(await (await session.connection()).get_raw_connection()).cursor() have no attribute connection
await session.connection() and await (await session.connection()).get_raw_connection() have no attribute gettype
So how can I get user defined DbObjectType
In cx_Oracle connection's cursor I call this
# cursor: Connection cursor
# data: list):
my_type = cursor.get_connection().gettype('MY_SCHEMA.MY_TYPE_ARRAY').newobject()
my_type.extend(data)
Have an async connection pool in FastApi application. Using python-oracledb async connection pool (thin mode).
Trying to call Connection.gettype(name)
(await (await session.connection()).get_raw_connection()).cursor() have no attribute connection
await session.connection() and await (await session.connection()).get_raw_connection() have no attribute gettype
So how can I get user defined DbObjectType
In cx_Oracle connection's cursor I call this
# cursor: Connection cursor
# data: list):
my_type = cursor.get_connection().gettype('MY_SCHEMA.MY_TYPE_ARRAY').newobject()
my_type.extend(data)
Share
Improve this question
edited 8 hours ago
Kamo Petrosyan
asked yesterday
Kamo PetrosyanKamo Petrosyan
2441 silver badge10 bronze badges
2
- Since you tagged this with python-oracledb, hopefully the reference to the obsolete cx_Oracle driver in the question was a typo. – Christopher Jones Commented 17 hours ago
- before i used cx_Oracle and in question is example from old code with cx_Oracle. Question is for asynchronous oracledb driver (thin mode connection). – Kamo Petrosyan Commented 8 hours ago
1 Answer
Reset to default 0DBAPICursor has (protected) _connection attrubute
cursor = (await (await session.connection()).get_raw_connection()).cursor()
obj_type = (
await (
await session.cursor()
)._connection.gettype("MY_SCHEMA.MY_TYPE_ARRAY")
).newobject()
本文标签: Call oracledb Connectiongettype from SQLAlchemyAssyncSessionStack Overflow
版权声明:本文标题:Call oracledb Connection.gettype from SQLAlchemy.AssyncSession - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743776124a2537013.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论