Search Results

1
vote

Polymorphism in SQL database tables?

Since you tagged this PostgreSQL, you could look at http://www.postgresql.org/docs/8.1/static/ddl-inherit.html …
1
vote

Does Postgres have something similar to Oracle’s Virtual Private Databases?

You could do something like it with views/rules of the data. Also, 8.4 has column level permissions iirc. …
6
votes

Am I safe against SQL injection

In terms of your procedure you seem safe as the variable in the SP won't be expanded into code, but you can still expose yourself if you don't use a parameterized query like "SELECT * FRO …
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 …
0
votes

Is it possible to make a recursive SQL query ?

Jacob Rigby: If you really needed a directed graph so bad, PgSQL does support the SQL XML/XPath extensions. Though, didn't Ted Codd win this debate in 1974? …
0
votes

What are some ways I can improve the performance of a regular expression query in Postgresql 8?

If you have a limited set of regexes to match against you could create a table with the primary key of your table and a field indicating if it matches that regex, which you would update on a trigge …
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, …
0
votes

Web devs who have made the switch from MySQL, what postgresql features could you now not do without?

Stored Procedures / UDFs in Perl Asynchronous Database Access in libpq Schemas and databases, not databases pretending to be schemas GIN and GIST …
3
votes

Does a varchar field’s declared size have any impact in PostgreSQL?

TEXT /is/ the same as VARCHAR without an explicit length, the text "The storage requirement for a short string (up to 126 bytes) is 1 byte plus the actual string, which …