pypyodbc icon indicating copy to clipboard operation
pypyodbc copied to clipboard

A pure Python Cross Platform ODBC interface module

Results 58 pypyodbc issues
Sort by recently updated
recently updated
newest added

I use pypyodbc library, and get out of memory error for Issue #2042. The problem is in pypyodbc function: ``` def fetchall(self): if not self.connection: self.close() rows = [] while...

Current connect receives a connectString as parameter What about extending it to receive also other args such as 'database', 'user', 'host', 'port', 'password'? By doing this the connectString is build...

Hi, It happen randomly that when I call in robotframework-databaselibrary: | DatabaseLibrary.Execute Sql String | delete t_Skill_Group_Member where AgentSkillTargetID = ${agent_id} | # where ${agent_id} is a number I get:...

This PR just consists of https://github.com/jiangwen365/pypyodbc/pull/13 plus one extra Unicode fix I found was necessary to prevent pypyodbc from core dumping with an error about a double free.

In `get_type` it uses the [floating point division](https://github.com/jiangwen365/pypyodbc/blob/73c98e1756d481bbd0f8c7796ab4e81dd9724235/pypyodbc.py#L1103-L1143) operator (`//`). At least in Python 2.x. In Python3 `//` now peforms integer truncation, which _totally_ blew out an operation we were...

Hi, I came over this issue with version 1.3.1 seems like it comes from an empty integer in a row, and pypyodbc does not like to do the convertion int(null)....

See https://code.google.com/p/pypyodbc/issues/detail?id=11

Development has moved. Please open new issues at https://github.com/pypyodbc/pypyodbc/issues 请问想读取sql文件,connect连接的数据库类型是Mysql,应该怎么写哈? ```pyrhon pypyodbc.lowercase = False # 是否将字段名转为小写 # conn = pypyodbc.connect(r"Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=" + filePath + ";Uid=;Pwd=;") conn =...