Sponsored Content
Top Forums Programming Humor language - C Plus Equality - where to get it? Post 302923599 by junior-helper on Monday 3rd of November 2014 05:37:09 PM
Old 11-03-2014
The URL you attempted to git clone is wrong! You need a "git URL".
Open the URL from your git clone command in a web browser and look at the upper left corner, there you can choose from three different "git URLs" (ssh/https/git). *Those* are meant to be fed to the git clone command.

Hope this helps.
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

A different language to me!

Hi all, I'm glad there's a section called UNIX for dummies on this forum cause when it comes to UNIX, I am certainly a dummie. I honestly don't have a clue about 98% of the UNIX commands out there so forgive me if this is a really stupid question. I'm trying to set up a MySQL server on my Mac... (7 Replies)
Discussion started by: kguenther
7 Replies

2. Programming

c programming language

Can someone enligten me on what below program does? I understand getchar and putchar.. but what is this program suppose to do? I try to put printf on it, but it shows nothing.. can someone explain to me what this program is suppose to do? It is reading something and assigning to c? so, if... (8 Replies)
Discussion started by: convenientstore
8 Replies

3. Programming

c language

is there any difference between "char*" and "char *" (1 Reply)
Discussion started by: amol munde
1 Replies

4. Shell Programming and Scripting

problem with if statement equality

Here's my script: /bin/script.sh echo "hey __, don't forget the password is "kazlo"" echo "insert the name of your file in the... (1 Reply)
Discussion started by: cleansing_flame
1 Replies

5. Programming

which language will be the best

Hello, Ive got to amke a script to calculate how many emails are in the servers mailbox, how many times each IP address appears in the mailbox and to search for keywords, tehn produce the results in HTML report. The thing is I dont know where to start and what the best language to use would be. ... (4 Replies)
Discussion started by: clueless
4 Replies

6. Shell Programming and Scripting

New simple language

Hi all, I need to 'create' a new simple scripting language in order to allow SCADA operators make complex tasks against the system in an easy and friendly way. In other words I need to write mini modules with DB readings or writings, calculations, and so on, but these instructions must be written... (2 Replies)
Discussion started by: silex
2 Replies

7. UNIX for Dummies Questions & Answers

What language is this?

Hi, Just got handed this script set def = HLA_DR.pockets set data = DRB1_1501.dat foreach a ( 'cat $data | args 3 |sort -u' ) cat $def | xC | grep -v $a > $$.def cat $data | grep $a | args 1,2 > $a.dat set pseudo = `cat MHCDR_pseudo.dat | grep HLA | grep $a | args 2`... (8 Replies)
Discussion started by: lost
8 Replies

8. Programming

Why Assembly Language?

Hi guys, Assembly language is a low level language designed in 1950's, both system and application programs were written in assembly at that time. There is no question of assembly being very effecient compared to the other high level languages. But it is very cumbersome to write programs in... (9 Replies)
Discussion started by: gabam
9 Replies
SQL::Statement::Operation(3)				User Contributed Perl Documentation			      SQL::Statement::Operation(3)

NAME
SQL::Statement::Operation - base class for all operation terms SYNOPSIS
# create an operation with an SQL::Statement object as owner, specifying # the operation name (for error purposes), the left and the right # operand my $term = SQL::Statement::Operation->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation is an abstract base class providing the interface for all operation terms. INHERITANCE
SQL::Statement::Operation ISA SQL::Statement::Term METHODS
new Instantiates new operation term. value Return the result of the operation of the term by calling operate operate Abstract method which will do the operation of the term. Must be overridden by derived classes. DESTROY Destroys the term and undefines the weak reference to the owner as well as the stored operation, the left and the right operand. NAME
SQL::Statement::Operation::Neg - negate operation SYNOPSIS
# create an <not> operation with an SQL::Statement object as owner, # specifying the operation name, the left and B<no> right operand my $term = SQL::Statement::Neg->new( $owner, $op, $left, undef ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::Neg INHERITANCE
SQL::Statement::Operation::Neg ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
operate Return the logical negated value of the left operand. NAME
SQL::Statement::Operation::And - and operation SYNOPSIS
# create an C<and> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::And->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::And implements the logical "and" operation between two terms. INHERITANCE
SQL::Statement::Operation::And ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
operate Return the result of the logical "and" operation for the values of the left and right operand. NAME
SQL::Statement::Operation::Or - or operation SYNOPSIS
# create an C<or> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::Or->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::Or implements the logical "or" operation between two terms. INHERITANCE
SQL::Statement::Operation::Or ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
operate Return the result of the logical "or" operation for the values of the left and right operand. NAME
SQL::Statement::Operation::Is - is operation SYNOPSIS
# create an C<is> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::Is->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::Is supports: "IS NULL", "IS TRUE" and "IS FALSE". The right operand is always evaluated in boolean contect in case of "IS TRUE" and "IS FALSE". "IS NULL" returns true even if the left term is an empty string (''). INHERITANCE
SQL::Statement::Operation::Is ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
operate Returns true when the left term is null, true or false - based on the requested right value. NAME
SQL::Statement::Operation::ANSI::Is - is operation SYNOPSIS
# create an C<is> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::Is->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::ANSI::Is supports: "IS NULL", "IS TRUE" and "IS FALSE". The right operand is always evaluated in boolean contect in case of "IS TRUE" and "IS FALSE". "IS NULL" returns true if the right term is not defined, false otherwise. INHERITANCE
SQL::Statement::Operation::Is ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
operate Returns true when the left term is null, true or false - based on the requested right value. NAME
SQL::Statement::Operation::Contains - in operation SYNOPSIS
# create an C<in> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::Contains->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::Contains expects the right operand is an array of SQL::Statement::Term instances. It checks whether the left operand is in the list of the right operands or not like: $left->value($eval) ~~ map { $_->value($eval) } @{$right} INHERITANCE
SQL::Statement::Operation::Contains ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
operate Returns true when the left term is equal to any of the right terms NAME
SQL::Statement::Operation::Between - between operation SYNOPSIS
# create an C<between> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::Between->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::Between expects the right operand is an array of 2 SQL::Statement::Term instances. It checks whether the left operand is between the right operands like: ( $left->value($eval) >= $right[0]->value($eval) ) && ( $left->value($eval) <= $right[1]->value($eval) ) INHERITANCE
SQL::Statement::Operation::Between ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
operate Returns true when the left term is between both right terms NAME
SQL::Statement::Operation::Equality - abstract base class for comparisons SYNOPSIS
# create an C<equality> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::Equality->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::Equality implements compare operations between two terms - choosing either numerical comparison or string comparison, depending wherther both operands are a numeric or not. INHERITANCE
SQL::Statement::Operation::Equality ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
operate Return the result of the comparison. numcmp Abstract method which will do the numeric comparison of both terms. Must be overridden by derived classes. strcmp Abstract method which will do the string comparison of both terms. Must be overridden by derived classes. NAME
SQL::Statement::Operation::Equal - implements equal operation SYNOPSIS
# create an C<equal> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::Equal->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::Equal implements compare operations between two numbers and two strings. INHERITANCE
SQL::Statement::Operation::Equal ISA SQL::Statement::Operation::Equality ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
numcmp Return true when "$left == $right" strcmp Return true when "$left eq $right" NAME
SQL::Statement::Operation::NotEqual - implements not equal operation SYNOPSIS
# create an C<not equal> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::NotEqual->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::NotEqual implements negated compare operations between two numbers and two strings. INHERITANCE
SQL::Statement::Operation::NotEqual ISA SQL::Statement::Operation::Equality ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
numcmp Return true when "$left != $right" strcmp Return true when "$left ne $right" NAME
SQL::Statement::Operation::Lower - implements lower than operation SYNOPSIS
# create an C<lower than> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::Lower->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::Lower implements lower than compare operations between two numbers and two strings. INHERITANCE
SQL::Statement::Operation::Lower ISA SQL::Statement::Operation::Equality ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
numcmp Return true when "$left < $right" strcmp Return true when "$left lt $right" NAME
SQL::Statement::Operation::Greater - implements greater than operation SYNOPSIS
# create an C<greater than> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::Greater->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::Greater implements greater than compare operations between two numbers and two strings. INHERITANCE
SQL::Statement::Operation::Greater ISA SQL::Statement::Operation::Equality ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
numcmp Return true when $left $right> strcmp Return true when "$left gt $right" NAME
SQL::Statement::Operation::LowerEqual - implements lower equal operation SYNOPSIS
# create an C<lower equal> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::LowerEqual->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::LowerEqual implements lower equal compare operations between two numbers and two strings. INHERITANCE
SQL::Statement::Operation::LowerEqual ISA SQL::Statement::Operation::Equality ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
numcmp Return true when "$left <= $right" strcmp Return true when "$left le $right" NAME
SQL::Statement::Operation::GreaterEqual - implements greater equal operation SYNOPSIS
# create an C<greater equal> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::GreaterEqual->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::GreaterEqual implements greater equal compare operations between two numbers and two strings. INHERITANCE
SQL::Statement::Operation::GreaterEqual ISA SQL::Statement::Operation::Equality ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
numcmp Return true when $left = $right> strcmp Return true when "$left ge $right" NAME
SQL::Statement::Operation::Regexp - abstract base class for comparisons based on regular expressions SYNOPSIS
# create an C<regexp> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::Regexp->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::Regexp implements the comparisons for the "LIKE" operation family. INHERITANCE
SQL::Statement::Operation::Regexp ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
operate Return the result of the comparison. right Returns the regular expression based on the right term. The right term is expected to be constant - so "a LIKE b" in not supported. regexp Abstract method which must return a regular expression ("qr//") from the given string. Must be overridden by derived classes. NAME
SQL::Statement::Operation::Like - implements the like operation SYNOPSIS
# create an C<like> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::Like->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::Like is used to to the comparisons for the "LIKE" operation. INHERITANCE
SQL::Statement::Operation::Like ISA SQL::Statement::Operation::Regexp ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
regexp Returns "qr/^$right$/s" NAME
SQL::Statement::Operation::Clike - implements the clike operation SYNOPSIS
# create an C<clike> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::Clike->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::Clike is used to to the comparisons for the "CLIKE" operation. INHERITANCE
SQL::Statement::Operation::Clike ISA SQL::Statement::Operation::Regexp ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
regexp Returns "qr/^$right$/si" NAME
SQL::Statement::Operation::RLike - implements the rlike operation SYNOPSIS
# create an C<rlike> operation with an SQL::Statement object as owner, # specifying the operation name, the left and the right operand my $term = SQL::Statement::RLike->new( $owner, $op, $left, $right ); # access the result of that operation $term->value( $eval ); DESCRIPTION
SQL::Statement::Operation::RLike is used to to the comparisons for the "RLIKE" operation. INHERITANCE
SQL::Statement::Operation::RLike ISA SQL::Statement::Operation::Regexp ISA SQL::Statement::Operation ISA SQL::Statement::Term METHODS
regexp Returns "qr/$right$/s" AUTHOR AND COPYRIGHT
Copyright (c) 2009,2010 by Jens Rehsack: rehsackATcpan.org All rights reserved. You may distribute this module under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file. perl v5.12.1 2010-05-06 SQL::Statement::Operation(3)
All times are GMT -4. The time now is 11:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy