3
votes
Find potential SQL inject problems in Java/JSP code.
I'd write some searches or load up an IDE that looked for use of java.sql.Statement as opposed to PreparedStatement.
…
1
vote
Is there a version control system for database structure changes?
Two book recommendations: "Refactoring Databases" by Ambler and Sadalage and "Agile Database Techniques" by Ambler.
Someone mentioned Rails Migrations. I think they work great, even outside …
1
vote
Querying XML like SQL?
XQuery is a functional language that is closest to SQL. XPath is a notation for lo …
0
votes
Regular expression to match common SQL syntax?
There are ANTLR grammars to parse SQL. It's really a better idea to use an …
1
vote
Can you have too many stored procedures?
I suppose the deeper question here is- where else should all of that code go? Views can be used to provide convenient access to data through standard SQL. More powerful application languages and …
0
votes
What are the pros and cons to keeping SQL in Stored Procs versus Code
Stored procedures are the worst when they are used to stand in-between applications and the database. Many of the reasons for their use stated above are better handled by views.
The securi …
