Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
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??

Help for this page

Select Code to Download


  1. or download this
        <table name="foo">
            <field name="a" required="1"/>
            <field name="b" validate="\d+\.\d+\.\d+"/>
            <field name="c" required="if a"/>
        </table>
    
  2. or download this
        package Model::Validate::Foo;
    
    ...
                die "c is required if a" if $value_of{a};
            }
        }
    
  3. or download this
        <table name="foo">
            ...
            <constraint name="avg_a" value="average(a) > 100"/>
        </table>
    
  4. or download this
        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 learning in the Monastery: (3)
As of 2024-04-18 23:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found