Skip to content
Advertisement

‘NoneType’ has not attribute (using pyodbc/sql connection)

Wondering why Python returns 'NoneType' object has no attribute 'connection' using the code below. I believe I’ve properly created the self.connection variable within the class, but attempting to call it using an instance returns the above error. Is the connection somehow terminated before I can retrieve the connection attribute?

Advertisement

Answer

sql_conn() doesn’t explicitly return anything, so it implicitly returns None.

One way to solve this issue without changing your methods is to split the last line into two lines – one for initializing the connection and the other one for retrieving it:

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement