Export to GitHub

pypyodbc - issue #24

Unable to set SQL Connect timeout


Posted on Sep 6, 2013 by Happy Monkey

Unable to set SQL Connect timeout

What steps will reproduce the problem?

  1. Сonnect to any server that drop (not reject!) the connection

import pypyodbc conn = pypyodbc.Connection("Driver=FreeTDS;Server=192.0.2.1;port=1443;UID=sa;PWD=secret;database=master;TDS_Version=8.0", timeout=5)

What is the expected output? What do you see instead?

Connection hang longer than 5s because Connection.init automaticaly calls self.connect() that sets SQL_ATTR_LOGIN_TIMEOUT but not SQL_ATTR_CONNECTION_TIMEOUT

What version of the product are you using? On what operating system?

version = '1.1.5' Linux

Please provide any additional information below.

I looked through the code and there is settimeout method that is not used. So quick solution is simply call self.settimeout(timeout) before self.connect in init method.

--- pypyodbc.py.orig 2013-09-06 19:47:05.000000000 +0400 +++ pypyodbc.py 2013-09-06 19:47:27.000000000 +0400 @@ -2285,6 +2285,7 @@ ret = ODBC_API.SQLAllocHandle(SQL_HANDLE_DBC, shared_env_h, ADDR(self.dbc_h)) check_success(self, ret)

  • self.settimeout(timeout) self.connect(connectString, autocommit, ansi, timeout, unicode_results, readonly)

But more elegant solution is separate timeouts: SQL_ATTR_CONNECTION_TIMEOUT SQL_ATTR_LOGIN_TIMEOUT SQL_ATTR_QUERY_TIMEOUT

Comment #1

Posted on Sep 9, 2013 by Helpful Camel

(No comment was entered for this change.)

Comment #2

Posted on Sep 21, 2013 by Helpful Camel

In version 1.2.0, self.settimeout(timeout), which sets the connection timeout value is also called when setting the login timeout value.

Comment #3

Posted on May 24, 2014 by Helpful Camel

In version 1.3.2, the QUERY_TIMEOUT will be set with the value connection.timeout (default to 0, which means forever)

CONNECTION_TIMEOUT will default be same as LOGIN_TIMEOUT utill I can think of a more elegant way to set them.

Status: Fixed

Labels:
Type-Defect Priority-Medium