import sqlite3

Andrew McNamara andrewm at object-craft.com.au
Thu Jun 4 01:55:36 EDT 2009


On 04/06/2009, at 3:15 PM, willgun wrote:
>
> When i run the following in IDLE:
> IDLE 2.6.1
>>>> import sqlite3
>>>> con =sqlite3.connect (r'g:\db1')
>>>>
> everything goes well,but when i save these to a .py file and run it:
>
>>>>
> Traceback (most recent call last):
>  File "C:\Users\hp\Desktop\SQLite3\sqlite3.py", line 2, in <module>
>    import sqlite3
>  File "C:\Users\hp\Desktop\SQLite3\sqlite3.py", line 3, in <module>
>    con=sqlite3.connect(r'g:\db1')
> AttributeError: 'module' object has no attribute 'connect'
>
> Anyone can tell me why?

What did you call the .py file? sqlite3.py? If so, you've just  
imported your own module again. 8-)

After the import, try "print sqlite3.__file__", which will tell you  
where the module came from.



More information about the Python-list mailing list