Found non-critical error in Database structure
table itemData
field valueID - type TEXT
table itemDataValues
field valueID - type INTEGER
field valueID - type TEXT
table itemDataValues
field valueID - type INTEGER
I found it, because I use MSAccess to connect to Zotero DB and tried to create query.
Access couldn't complete the query joing due to itemData.value.ID was defined as MEMO. So, I need to change it type to integer in Zotero
At first, I am personally don't need help. I already correct this issue.
At second, if it is important...
I don't know SQLile, so I need some other software.
I work with Access.
However, I tried to use 2 different type of database software:
- MS Access 2003
- DB Browser for SQLite 3.10.1
Last is freeware:
https://github.com/sqlitebrowser/sqlitebrowser/releases
or
http://sqlitebrowser.org/
Both of them (MS Access 2003 and DB Browser for SQLite ) indicate, that field valueID in the table itemData
IS NOT INTEGER
Screenshots:
http://www.triacon.org/tale/ms_access.jpg
http://www.triacon.org/tale/db_browser.jpg
You can try it by yourself with DB Browser for SQLite 3.10.1
However, it can be in my zotero database only, possible.
And again - I don't need help with correction.
I changed it type to INTEGER by DB Browser for SQLite (Access doesn't allow)
Sincerely yours
Andrey
If it's actually defined as TEXT for you (and "PRAGMA table_info(itemData);" in the official client would be the reliable way to check), I think this must've been something you changed yourself somehow (e.g., by running something that rebuilt the database with no-type columns set to TEXT rather than BLOB/NONE), since the line where the column type is defined hasn't changed since 2007 when it was created.