Sponsored Content
The Lounge What is on Your Mind? How important is programming in the IT field? Post 302526159 by click on Monday 30th of May 2011 02:36:44 PM
Old 05-30-2011
Definitely is a must. It also depends which field you prefer most, if you want to be dba you cannot get away without SQL/scripting, if you prefer networking/system administration you should go for scripting and basic C - these are just examples the "IT" is very big field. You should choose you niche and learn what skills you will need.
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

subfolders help please important

hi all. I just only wanna show all files from a whole 'root-table'....to understand: "ls *.exe" ...for instance in the directory it only shows the files from the folder, but not form the subfolders !? how to solve this problem ? if you are on your home /root/users/.... I want to see all files... (10 Replies)
Discussion started by: svennie
10 Replies

2. Solaris

Usages of Array's (Important please)

;) Hi friends, any one please help me. I want to store some job names into an array and also I want extract these names on different timings for scheduling. Please give me some idea. your's loving LOVE :p (1 Reply)
Discussion started by: Love
1 Replies

3. UNIX for Dummies Questions & Answers

some important Q ! plz answer

Hii everybody here first of all i'm soo soo happy to join Unix people ... I was using computer from age 7 till now i'm 20 :D but in the past 2 years i used linux ( Ubuntu ) and i have a small Q ! while the linux is open source so how could I make changes to the application ! ... (4 Replies)
Discussion started by: Ali87
4 Replies

4. UNIX for Advanced & Expert Users

Please Help Guys Important

Dear All I have an important request: I have a pattern which look like this: 2 20080219_21:43:22.194 ISC-Libya Belgium1 24 IAM 20115139248 218913265641 b 11672 ACM b 20614 CPG b 20619 CPG b 20626 CPG f 33925 REL b 34215 RLC :COMMA: NCI=00,FCI=6001,CPC=0A,TMR=00,USI: :COMMB: BCI=0201:... (15 Replies)
Discussion started by: zanetti321
15 Replies

5. UNIX for Dummies Questions & Answers

Carreer:Networking Programming in Unix (C programming Language)

Hello, I am trying to learn Networking Programming in C in unix enviorment. I want to know how good it is to become a network programmer. i am crazy about Network programming but i also want to opt for the best carreer options. Anybody experienced Network Programmer, please tell me is my... (5 Replies)
Discussion started by: vibhory2j
5 Replies

6. UNIX for Dummies Questions & Answers

Am confused - The all important . (period) - ????

Hi, My apologies if this question is so trivial ... I guess there really is a room for dummies ... :o Anyway, just wanting to know if someone can please explain what the dot (.) infront of the command or script does and why it works and does not work in the following? ... (1 Reply)
Discussion started by: newbie_01
1 Replies

7. UNIX for Dummies Questions & Answers

From iOS programming to Linux system programming

Hello. I like Linux and C programming language. Allways wanted to understand kernel and become a Linux system programmer. And I also like Objective-C and iOS. These two programming areas have relations: 1. Linux and iOS are UNIX-like systems, POSIX compliant. 2. It is useful to know C language... (2 Replies)
Discussion started by: Rockatansky
2 Replies
SQL::Translator::Schema::Field(3pm)			User Contributed Perl Documentation		       SQL::Translator::Schema::Field(3pm)

NAME
SQL::Translator::Schema::Field - SQL::Translator field object SYNOPSIS
use SQL::Translator::Schema::Field; my $field = SQL::Translator::Schema::Field->new( name => 'foo', table => $table, ); DESCRIPTION
"SQL::Translator::Schema::Field" is the field object. METHODS
new Object constructor. my $field = SQL::Translator::Schema::Field->new( name => 'foo', table => $table, ); comments Get or set the comments on a field. May be called several times to set and it will accumulate the comments. Called in an array context, returns each comment individually; called in a scalar context, returns all the comments joined on newlines. $field->comments('foo'); $field->comments('bar'); print join( ', ', $field->comments ); # prints "foo, bar" data_type Get or set the field's data type. my $data_type = $field->data_type('integer'); sql_data_type Constant from DBI package representing this data type. See "DBI Constants" in DBI for more details. default_value Get or set the field's default value. Will return undef if not defined and could return the empty string (it's a valid default value), so don't assume an error like other methods. my $default = $field->default_value('foo'); extra Get or set the field's "extra" attibutes (e.g., "ZEROFILL" for MySQL). Accepts a hash(ref) of name/value pairs to store; returns a hash. $field->extra( qualifier => 'ZEROFILL' ); my %extra = $field->extra; foreign_key_reference Get or set the field's foreign key reference; my $constraint = $field->foreign_key_reference( $constraint ); is_auto_increment Get or set the field's "is_auto_increment" attribute. my $is_auto = $field->is_auto_increment(1); is_foreign_key Returns whether or not the field is a foreign key. my $is_fk = $field->is_foreign_key; is_nullable Get or set whether the field can be null. If not defined, then returns "1" (assumes the field can be null). The argument is evaluated by Perl for True or False, so the following are eqivalent: $is_nullable = $field->is_nullable(0); $is_nullable = $field->is_nullable(''); $is_nullable = $field->is_nullable('0'); While this is technically a field constraint, it's probably easier to represent this as an attribute of the field. In order keep things consistent, any other constraint on the field (unique, primary, and foreign keys; checks) are represented as table constraints. is_primary_key Get or set the field's "is_primary_key" attribute. Does not create a table constraint (should it?). my $is_pk = $field->is_primary_key(1); is_unique Determine whether the field has a UNIQUE constraint or not. my $is_unique = $field->is_unique; is_valid Determine whether the field is valid or not. my $ok = $field->is_valid; name Get or set the field's name. my $name = $field->name('foo'); The field object will also stringify to its name. my $setter_name = "set_$field"; Errors ("No field name") if you try to set a blank name. full_name Read only method to return the fields name with its table name pre-pended. e.g. "person.foo". order Get or set the field's order. my $order = $field->order(3); schema Shortcut to get the fields schema ($field->table->schema) or undef if it doesn't have one. my $schema = $field->schema; size Get or set the field's size. Accepts a string, array or arrayref of numbers and returns a string. $field->size( 30 ); $field->size( [ 255 ] ); $size = $field->size( 10, 2 ); print $size; # prints "10,2" $size = $field->size( '10, 2' ); print $size; # prints "10,2" table Get or set the field's table object. As the table object stringifies this can also be used to get the table name. my $table = $field->table; print "Table name: $table"; Returns the field exactly as the parser found it equals Determines if this field is the same as another my $isIdentical = $field1->equals( $field2 ); AUTHOR
Ken Youens-Clark <kclark@cpan.org>. perl v5.14.2 2012-01-18 SQL::Translator::Schema::Field(3pm)
All times are GMT -4. The time now is 09:38 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy