Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Fishing for constraint => SQL designs

by nferraz (Monk)
on May 23, 2007 at 10:32 UTC ( [id://616969]=note: print w/replies, xml ) Need Help??


in reply to Fishing for constraint => SQL designs

You could describe the rules in XML:

<table name="foo"> <field name="a" required="1"/> <field name="b" validate="\d+\.\d+\.\d+"/> <field name="c" required="if a"/> </table>

These could be easily translated to perl:

package Model::Validate::Foo; sub on_insert { my %value_of = @_; if ( !$value_of{a} ) { die "a is required"; } if ( $value_of{b} !~ /\d+\.\d+\.\d+/ ) { die "invalid b"; } if ( !$value_of{c} ) { die "c is required if a" if $value_of{a}; } }

Or, perhaps you could have constraints declared like this:

<table name="foo"> ... <constraint name="avg_a" value="average(a) > 100"/> </table>

Which would generate a sub like:

sub avg_a { # called on insert, update of table foo # check if average(a) > 100 }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://616969]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (2)
As of 2024-04-26 01:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found