2
votes
What makes PostgreSQL more advanced than MySQL?
bobince: RE: foreign key support,referential integrity, transactions, views, subselects: InnoDB may have them, but they are not as standards-compliant, or real world tested than PostgreSQL's (seei …
5
votes
Why opensource database like Postgresql and Mysql don’t have encrypted stored proc?
While I'm sure encrypted stored procs are a simple matter of programming in PostgreSQL at least (MySQL and stored procs do not have a long history together), with PgSQL's custom languages support, …
2
votes
Implementing cross-thread/process queues in Perl
In PostgreSQL you could use the NOTIFY/LISTEN combination, would need only a wait on the PG connection socket after running LISTEN(s).
…
