SQLite3
Moderators: gto, cipto_kh, EgonHugeist
I have found SQLite3 support units at
http://cvs.sourceforge.net/viewcvs.py/z ... ework/src/
http://cvs.sourceforge.net/viewcvs.py/z ... ework/src/
-
- Fresh Boarder
- Posts: 7
- Joined: 06.09.2005, 19:10
Thank you very much.
btw I found a little problem when I select a view from database
example:
when I try to show something from view (SELECT * FROM vabonament) I've get field usluga as INTEGER (should be VARCHAR). The same problem is in SQLite Administrator.
btw I found a little problem when I select a view from database
example:
Code: Select all
CREATE VIEW vabonament AS
SELECT idabonamentu, idpozycji, idumowy, datanaliczen, tryb, ilosc, liczbarat,
CASE
WHEN tryb IN (1, 2) THEN (SELECT usluga FROM uslugi WHERE iduslugi=(SELECT iduslugi FROM cennik_pozycje WHERE cennik_pozycje.idpozycji=abonament.idpozycji))
WHEN tryb=3 THEN usluga
END [usluga]
FROM abonament;
-
- Fresh Boarder
- Posts: 7
- Joined: 06.09.2005, 19:10
I found easier way to show this problem (it also appears in 3.x)
Code: Select all
select * from sqlite_sequence;