"aivars" <[EMAIL PROTECTED]> wrote
Please try what sqlite3.version shows on your machine?
I also have ActiveState's python (mainly for its very good doc) and
I get:
>>> import sqlite3
sqlite3.sqlite_version
'3.3.4'
Me too with Python 2.5.1 from Activestate.
Alan G
__
Hello, Denis,
Please try what sqlite3.version shows on your machine?
Thanks
aivars
2008/11/7 spir <[EMAIL PROTECTED]>:
> aivars a écrit :
>>
>> Thanks, John,
>> Yes it seems you are right. The ActiveState python version I have
>> installed have sqlite 2.3.2 only. I find it strange.
>
> I also
"aivars" <[EMAIL PROTECTED]> wrote
Yes it seems you are right. The ActiveState python version I have
installed have sqlite 2.3.2 only. I find it strange.
Why? SQLite is a separate product. Python bundled the then
current version in its standard distribution, but time has moved on.
You have ap
John, just to add to my previous post.
after copying sqlite3.dll (3.6.2) version into Python25\DLLs directory
and running
import sqlite3
dir(sqlite3)
>>> sqlite3.version
'2.3.2'
>>> sqlite3.version_info
(2, 3, 2)
>>> sqlite3.sqlite_version_info
(3, 6, 2)
>>> sqlite3.sqlite_version
'3.6.2'
an
Thanks, John,
Yes it seems you are right. The ActiveState python version I have
installed have sqlite 2.3.2 only. I find it strange.
I see that on a python website there is is a new version Python26
relesed. Should i go on and install Python26? I understand that I can
install pure Python from pytho
2008/11/7 aivars <[EMAIL PROTECTED]>:
> I use python 2.5.2.2 (activestate), WinXP, sqlite version 3.6.2
Hi Aivars,
I believe python has its own built-in sqlite, rather than using the
version you installed independently. So it is possible that the
python version of sqlite is older than 3.6.2 and
Hello,
I am stuck now.
I have a sqlite database with a table calendar (which is an auxilary
calendar table containing dates, years, months, days)
>From sqlite prompt I can run the following query without any problem:
SELECT replace( datums,'-','' ) FROM calendar where Y='2008' and M='5'
It give