Re: Listen/Notify?
Gerhard Häring <[email protected]>
| Newsgroups | gmane.comp.python.db.pysqlite.user |
|---|---|
| Message-ID | <[email protected]> |
Andrea Gavana wrote: > Hi All, > > sorry for my newbieness, I really know too little about pysqlite. > I was wondering if pysqlite supports commands like LISTEN/NOTIFY, [...] There is no such thing as LISTEN/NOTIFY for SQLite. There's also no way to communicate with other connected clients, except via inserting data into tables that all clients poll. -- Gerhard