I have an application that makes a render inline, and another in XML
based on data from an URL.
I need to validate the data before passing it over to SQL, and I would
like to receive the errors in the returned array, or at least a
TRUE/FALSE. As there is no associated view file I don’t know how to…
Could someone help me out or orientate me in some way?
SQL Injection, mmm… yes, maybe, but I refer particularly to check if a
string is numeric, date type or too short for the database values (for
example).
Only if these requirements are OK, the select query is executed.
Otherwise, the application should return false or something.
In that case, I don’t know of a way to reuse an ActiveRecord validation
before running a find. You don’t even have a ActiveRecord object at that
point yet.
You might just have to write your custom validations before running the
find. Maybe someone else has a better option. Sorry :-o)
There should never be an invalid record at the database, that’s why
there is no validation in a find and for the same reason there
shouldn’t be. If you think you really need it, maybe you haven’t
really figured out what your problem is.
No… ActiveRecord validations only works if the SQL operation is an
insert or update (“create” and “update” methods, respectively), but I
also need it to select querys (“find” method). That’s the problem… :S
The only reason I can see the need to validate before a find is if your
are
absolutely obsessed with performance and you don’t want to hit the DB if
you
know a priori that no record will be returned. This is definitely not a
normal case. If the query takes too long you might have to rethink your
schema, your query, or create proper indexes.
On Mon, Feb 2, 2009 at 12:44 PM, MaurÃcio Linhares <
The fact is that the project I’m developing is a database connection API
and, although is not essential, it would be nice that it could checks
the data integrity. The reason for do that is to improve the user (or
programmer :P) experience and prevent potential errors in the final
application, not the performance.
Anyway, I found a plugin that does what I want, but it has no associated
download :S. Here’s a brief description (in Spanish):