Foros del Web » Programación para mayores de 30 ;) » Programación General »

Perl con Paradox

Estas en el tema de Perl con Paradox en el foro de Programación General en Foros del Web. Hola a todos, existe la manera de conectar perl (activeperl para windows) con bases de datos Paradox (.db) sin usar ODBC?? tengo instalado IIS + ...
  #1 (permalink)  
Antiguo 31/05/2006, 16:46
Avatar de developmx  
Fecha de Ingreso: agosto-2004
Mensajes: 41
Antigüedad: 19 años, 8 meses
Puntos: 0
Pregunta Perl con Paradox

Hola a todos, existe la manera de conectar perl (activeperl para windows) con bases de datos Paradox (.db) sin usar ODBC??

tengo instalado IIS + ActivePerl, en windows XP profesional SP2.

Ojala alguien pueda decirme como hacerlo ya que no encuentro la manera, incluso trate de hacerlo en PHP y tampoco.

De antemano Gracias
  #2 (permalink)  
Antiguo 01/06/2006, 02:15
Colaborador
 
Fecha de Ingreso: mayo-2006
Ubicación: Valladolid
Mensajes: 524
Antigüedad: 18 años
Puntos: 11
Como no puedo poner aquí enlaces, te cuento como he llegado a encontrar un ejemplo: entra en Google y pones que busque por las palabras paradox y perl. En el primer enlace, vete diréctamente a verlo en la Caché de google y encontrarás un ejemplo de código para acceder diréctamente.
  #3 (permalink)  
Antiguo 02/06/2006, 11:22
Avatar de developmx  
Fecha de Ingreso: agosto-2004
Mensajes: 41
Antigüedad: 19 años, 8 meses
Puntos: 0
lo he visto pero no encuentro donde me diga como hacer el enlaze ya no se que hacer, de cualquier modo muchas gracias
  #4 (permalink)  
Antiguo 03/06/2006, 05:32
Colaborador
 
Fecha de Ingreso: mayo-2006
Ubicación: Valladolid
Mensajes: 524
Antigüedad: 18 años
Puntos: 11
http://66.102.9.104/search?q=cache:L...ient=firefox-a
  #5 (permalink)  
Antiguo 03/06/2006, 05:35
Colaborador
 
Fecha de Ingreso: mayo-2006
Ubicación: Valladolid
Mensajes: 524
Antigüedad: 18 años
Puntos: 11
Código:
# Reading DB-files from Paradox with Perl
#
# Copyright (C) 2000-2001 Sergey A. Eremenko ([email protected]) and 
#			Alexander E. Chizhov ([email protected])
# English translation copyright (C) 2001 Edward Stankevich ([email protected])
#
# Created for JSC Rostovtelecom specially
# Licensed by GPL
# $Id: Paradox.pm v1.0.8 $
#
# 1.0.0	- first release
# 1.0.1	- view of 'short' as 0x0000 fixed, its empty now
#	- made as module
#	- additional checking for fields sizes
# 1.0.2	- view of 'money' and 'number' as 0x0000000000000000 fixed,
#	  its empty now
# 1.0.3	- 'get_record_as_hash' added
# 1.0.4	- 'open', 'close', 'reopen' added for multiple reading 
#	  of the same file
#	- small bug of calling 'new' without name was fixed at one
# 1.0.5	- very unpleasant bug of inaccurate copying from localtime.c 
#	  was fixed. There was infinite looping at bounds date of
#	  years, such as 01-01-1999. Thats why those who using this
#	  thing are STRONGLY RECOMMENDED to upgrade for 1.0.5.
# 1.0.6	- the bug of impossibility of reading last record, if last
#	  data block consists of this record alone, fixed.
# 1.0.7	- header data integrity checking added
#	- Paradox 3,4,5,7 checking added
#	- 'long' type processing added
#	- 'autoincrement' type processing added
#	- 'logical' type processing added
#	- 'time' type processing added
#	- 'alt2koi' coding hase been modified
#	- 'win1251' russian coding operation added
#	- sort order and codepage are checking now. Also text coding
#	  process in russian case only.     
#	- 'timestamp' type processing added
# 1.0.8	- bug of reading field name having spaces fixed,
#	  thanks to Christopher R. Redinger 

package Paradox ;

#	Object variables
# handle	- file handle
# dummy	- next reading data
#
#	DB-file header
# record_length		- record length
# header_length		- header length
# block_length		- 1 data block length
# all_records		- number of records
# all_used_blocks	- number of real used data blocks
# first_data_block	- first data block
# all_fields		- number of fields
# sort_order		- sort order
# version		- Paradox version
# code_page		- DOS codepage
# @field_type		- array of field types
# @field_length		- array of field lengths
# @field_name		- array of field names
#
#	Reading file data
# is_last_block		- is it last block?
# current_used_block	- number of current used block
# current_block		- number of current block
# next_block		- number of next block
# need_read_block	- is need to read next data block?
# end_of_base		- is it end of base?
# last_record_offset	- last record offset in data block
# current_record_offset	- current record offset in data block

require 5.004 ;
use Fcntl qw (:flock) ;
use IO::File ;

# Convert string from cp-866 to koi8-r coding. This is actually for 
# russians only. (Opjat eti russkie chto-to pridumali ;-)
# If you don't need it (lucky!) just comment third string in this sub.
sub alt2koi {
	my ($string) = @_;

	$string =~ tr/\x80-\xFF/\xE1\xE2\xF7\xE7\xE4\xE5\xF6\xFA\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF2\xF3\xF4\xF5\xE6\xE8\xE3\xFE\xFB\xFD\xFF\xF9\xF8\xFC\xE0\xF1\xC1\xC2\xD7\xC7\xC4\xC5\xD6\xDA\xC9\xCA\xCB\xCC\xCD\xCE\xCF\xD0\x90\x91\x92\x81\x87\xB2\xB4\xA7\xA6\xB5\xA1\xA8\xAE\xAD\xAC\x83\x84\x89\x88\x86\x80\x8A\xAF\xB0\xAB\xA5\xBB\xB8\xB1\xA0\xBE\xB9\xBA\xB6\xB7\xAA\xA9\xA2\xA4\xBD\xBC\x85\x82\x8D\x8C\x8E\x8F\x8B\xD2\xD3\xD4\xD5\xC6\xC8\xC3\xDE\xDB\xDD\xDF\xD9\xD8\xDC\xC0\xD1\xB3\xA3\xE5\xC5\x49\x69\xF5\xD5\x9C\x95\x9E\x96\x4E\xD2\x94\x9A/;
	return $string;
}

# Convert string from win1251 to koi8-r coding.
sub win2koi {
	my ($string) = @_;

	$string =~ tr/\x80-\xFF/................................\x9A.......\xB3\xBF......\x9C......\x9E\xA3.......\xE1\xE2\xF7\xE7\xE4\xE5\xF6\xFA\xE9\xEA\xEB\xEC\xED\xEE\xEF\xF0\xF2\xF3\xF4\xF5\xE6\xE8\xE3\xFE\xFB\xFD\xFF\xF9\xF8\xFC\xE0\xF1\xC1\xC2\xD7\xC7\xC4\xC5\xD6\xDA\xC9\xCA\xCB\xCC\xCD\xCE\xCF\xD0\xD2\xD3\xD4\xD5\xC6\xC8\xC3\xDE\xDB\xDD\xDF\xD9\xD8\xDC\xC0\xD1/;
	return $string;
}

# $header_length have to be read at this moment !
sub read_next_header_data {
	my $self = shift;
	my ($length) = @_;

	die "instance method called on class" unless ref $self;
	if (!defined ($length)) {
		return;
	}
	sysread ($self->{handle},$self->{dummy},$length) || 
		die "Cannot read header in read_next_header_data: $!\n" ;
	if (sysseek ($self->{handle},0,1) > $self->{header_length}) {
		die "Bad format! Header is too small\n" ;
	}
}

# convert Paradox definition of two-byte integer into "normal human"

sub paradox_short_to_scalar {
	my ($num) = @_;
	my ($short);
	my ($high,$low);

	if (!defined ($num)) {
		return undef;
	}
	($short) = unpack ('n',$num);
	if ($short==0) {
		return "";
	}
	elsif (($short & 0x8000) > 0) {
		return $short & 0x7fff;
	}
	else {
		return -($short ^ 0x7fff)-1;
	}
}

# convert Paradox definition of four-byte integer into "normal human"

sub paradox_long_to_scalar {
	my ($num) = @_;
	my ($long);

	if (!defined ($num)) {
		return undef;
	}
	($long) = unpack ('N',$num);
	if ($long==0) {
		return "";
	}
	elsif (($long & 0x80000000) > 0) {
		return $long & 0x7fffffff;
	}
	else {
		return -($long ^ 0x7fffffff)-1;
	}
}

# convert Paradox definition of boolean into "normal human"

sub paradox_logic_to_scalar {
	my ($num) = @_ ;
	my ($logical) ;

	if (!defined ($num)) {
		return undef ;
	}
	($logical) = unpack ('C',$num) ;
	if (0==$logical) {
		return "" ;
	}
	elsif (0x81==$logical) {
		return "true" ;
	}
	elsif (0x80==$logical) {
		return "false" ;
	}
	return "INVAL-BOOL" ;
}

# convert Paradox definition of time into "normal human"

sub paradox_time_to_scalar {
	my ($num) = @_ ;
	my ($long) ;

	if (!defined ($num)) {
		return undef ;
	}
	$long = &paradox_long_to_scalar ($num) ;
	if ("" eq $long) {
		return "" ;
	}
	if ($long<0) {
		return "INVAL-TIME" ;
	}
	return &msec_to_time ($long) ;
}

# convert microseconds into time

sub msec_to_time {

# to being divided without remainder
	use integer ;

	my ($hour) = @_ ;
	my ($min,$sec,$msec) ;

	if (!defined ($hour)) {
		return undef ;
	}
	$msec = $hour % 1000 ;
	$hour /= 1000 ;
	$sec = $hour % 60 ;
	$hour /= 60 ;
	$min = $hour % 60 ;
	$hour /= 60 ;
	no integer ;
	return sprintf "%02d:%02d:%02d.%d",$hour,$min,$sec,$msec ;
}

# convert Paradox definition of floating point into "normal human"
# WARNING! I've checked it only at Intel platform!
# I could write some universal, but I'm lazy :-)

sub paradox_number_to_scalar {
	my ($num) = @_ ;
	my ($result) ;
	my (@num_array) ;

	undef $result ;
	if (defined ($num)) {
		@num_array = unpack ('CCCCCCCC',$num) ;
		if ($num_array[0]==0 && $num_array[1]==0 && $num_array[2]==0 &&
		    $num_array[3]==0 && $num_array[4]==0 && $num_array[5]==0 &&
		    $num_array[6]==0 && $num_array[7]==0) {
			return "" ;
		}
# high bit in first byte is set
		if ((@num_array[0] & 0x80) > 0) {
			@num_array[0] &= 0x7f ;
		}
		elsif ((@num_array[0]==0) && ((@num_array[1] & 0xf0) < 0x10 )) {
		}
		else {
			foreach (@num_array) {
				$_ ^= 0xff ;
			}
		}
		@num_array = reverse @num_array ;
		$result = unpack ('d',pack ('CCCCCCCC',@num_array)) ;
	}
	return $result ;
}

Última edición por jferrero; 03/06/2006 a las 05:45
  #6 (permalink)  
Antiguo 03/06/2006, 05:45
Colaborador
 
Fecha de Ingreso: mayo-2006
Ubicación: Valladolid
Mensajes: 524
Antigüedad: 18 años
Puntos: 11
Código:
# convert Paradox definition of date to "normal human"

sub paradox_date_to_scalar {
	my ($num) = @_ ;
	my ($long) ;

	if (!defined ($num)) {
		return undef ;
	}
	$long = unpack ('N',$num) ;
	if (($long & 0x80000000)>0) {
		return &days_to_date ($long & 0x7fffffff) ;
	}
	elsif ($long == 0) {
		return "" ;
	}
	else {
		return "INVAL-DATE" ;
	}
}

# convert Paradox definition of date and time to "normal human"

sub paradox_timestamp_to_scalar {

# to work with more than LongInt numbers
	use Math::BigInt ;

	my ($num) = @_ ;
	my ($date,$time) ;
	my ($a,$b) ;

	if (!defined ($num)) {
		return undef ;
	}
	$date = &paradox_number_to_scalar ($num) ;
	if ("" eq $date) {
		return "" ;
	}
	if ($date<0) {
		return "INVAL-TIMESTAMP" ;
	}
	$a = Math::BigInt->new ($date) ;
	$b = Math::BigInt->new ("86400000") ;
	($date,$time) = $a->bdiv ($b) ;
	return &days_to_date ($date) . " " . &msec_to_time ($time) ;
}

# I don't lay claim to algorythm, it was simply been copied from localtime.c
# Portions (C) 1996 Arthur David Olson ([email protected]).

my (@year_lengths) = (365,366) ;
my (@mon_lengths) = (
	[31,28,31,30,31,30,31,31,30,31,30,31],
	[31,29,31,30,31,30,31,31,30,31,30,31]
) ;

# is it a leap year?

sub isleap {
	my ($y) = @_ ;

	if (!defined ($y)) {
		return undef ;
	}
	return ($y % 4)==0 && (($y % 100)!=0 || ($y % 400)==0) ;
}

sub days_to_date {

# to being divided without remainder
	use integer ;

	my ($days) = @_ ;
	my ($year,$mon,$day) ;
	my ($yleap,$newy,$ref) ;

	if (!defined ($days)) {
		return undef ;
	}
# as long as this is amount of days from 1st january (1st january of 1st year
# is 1), you have to subtract one day to have an amount of days from beginning
	$days-- ;
# Paradox keep the date beginning from 1st year A.D.
	$year = 1 ;
	while ($days<0 || $days>=$year_lengths[$yleap = isleap ($year)]) {
		$newy = $year + $days / 365 ;
		if ($days<0) {
			$newy-- ;
		}
		$days -= ($newy - $year) * 365 +
			(($newy-1)/4 - ($newy-1)/100 + ($newy-1)/400) -
			(($year-1)/4 - ($year-1)/100 + ($year-1)/400) ;
		$year = $newy ;
	}
	$ref = $mon_lengths[$yleap] ;
	for ($mon = 0 ; $days>= $ref->[$mon] ; $mon++) {
		$days -= $ref->[$mon] ;
	}
# months from nil, need to be increased by 1
	$mon++ ;
# same situation
	$days++ ;
	no integer ;
	return sprintf "%02d-%02d-%04d",$days,$mon,$year ;
}

# main file is F

sub PX_read_header {
	my $self = shift ;
	my ($i,$char,$string) ;

	die "instance method called on class" unless ref $self ;
	sysseek ($self->{handle},0,0) ||
		die "Cannot make seek in PX_read_header: $!\n" ;
# 00 word
	sysread ($self->{handle},$self->{dummy},2) || 
		die "Cannot read header in PX_read_header: $!\n" ;
	$self->{record_length} = unpack ('v',$self->{dummy}) ;
# 02 word
	sysread ($self->{handle},$self->{dummy},2) || 
		die "Cannot read header in PX_read_header: $!\n" ;
	$self->{header_length} = unpack ('v',$self->{dummy}) ;
# 04 byte
	$self->read_next_header_data (1) ;
	$i = unpack ('C',$self->{dummy}) ;
	(0==$i || 2==$i) ||
		die "Unknown DB-file type!\n" ;
# 05 byte
	$self->read_next_header_data (1) ;
	$i = unpack ('C',$self->{dummy}) ;
	($i>=1 && $i<=4) ||
		die "Unknown DB-file block size!\n" ;
	$self->{block_length} = $i * 1024 ;
# 06 long
	$self->read_next_header_data (4) ;
	$self->{all_records} = unpack ('V',$self->{dummy}) ;
# 0A word
	$self->read_next_header_data (2) ;
	$self->{all_used_blocks} = unpack ('v',$self->{dummy}) ;
# 0C word
	$self->read_next_header_data (2) ;
# 0E word
	$self->read_next_header_data (2) ;
	$self->{first_data_block} = unpack ('v',$self->{dummy}) ;
# 10 word ........
	$self->read_next_header_data (0x11) ;
# 21 word
	$self->read_next_header_data (2) ;
	$self->{all_fields} = unpack ('v',$self->{dummy}) ;
# 23 word long
	$self->read_next_header_data (6) ;
# 29 byte
	$self->read_next_header_data (1) ;
	$self->{sort_order} = unpack ('C',$self->{dummy}) ;
# 2A byte ........
	$self->read_next_header_data (0x0f) ;
# 39 byte
	$self->read_next_header_data (1) ;
	$i = unpack ('C',$self->{dummy}) ;
	($i>=3 && $i<=12) ||
		die "Unknown DB-file version!\n" ;
	$self->{version} = $i ;
	$self->read_next_header_data (0x1e) ;
	if ($self->{version}>4) {
# 58 word ........
		$self->read_next_header_data (18) ;
# 6A word
		$self->read_next_header_data (2) ;
		$self->{code_page} = unpack ('v',$self->{dummy}) ;
		$self->read_next_header_data (12) ;
	}
	else {
# Paradox 3 has not such header
		if (0xc0==$self->{sort_order}) {
			$self->{code_page} = 866 ;
		}
		elsif (0x4c==$self->{sort_order}) {
			$self->{code_page} = 1251 ;
		}
	}
# 58 (Paradox3) or 78 (any) array
	undef @{$self->{field_type}} ;
	undef @{$self->{field_length}} ;
	undef @{$self->{field_name}} ;
	for ($i=0 ; $i<$self->{all_fields} ; $i++) {
		$self->read_next_header_data (1) ;
		push (@{$self->{field_type}},unpack ('C',$self->{dummy})) ;
		$self->read_next_header_data (1) ;
		push (@{$self->{field_length}},unpack ('C',$self->{dummy})) ;
	}
# ignore all until field names
	$self->read_next_header_data (4*$self->{all_fields}+4) ;
	if ($self->{version}>11) {
		$self->read_next_header_data (0x105) ;
	}
	else {
		$self->read_next_header_data (0x4f) ;
	}
	for ($i=0 ; $i<$self->{all_fields} ; $i++) {
		$string = "" ;
		do {
			sysread ($self->{handle},$char,1) || 
				die "Cannot read header in PX_read_header: $!\n" ;
			if (sysseek ($self->{handle},0,1)>$self->{header_length}) {
				die "Bad format! Header is too small\n" ;
			}
			$char = unpack ('Z',$char) ;
			if ($char) {
				$string .= $char ;
			}
		} while ($char) ;
		if (0xc0==$self->{sort_order} && 866==$self->{code_page}) {
			push (@{$self->{field_name}},alt2koi($string)) ;
		}
		elsif (0x4c==$self->{sort_order} && 
			(1252==$self->{code_page} || 1251==$self->{code_page})) {
			push (@{$self->{field_name}},win2koi($string)) ;
		}
		else {
			push (@{$self->{field_name}},$string) ;
		}
	}
}

# return next block number and last record offset in block
# and specify file position for reading of first record

sub PX_read_data_block {
	my $self = shift ;
	my ($dummy) ;

	die "instance method called on class" unless ref $self ;
	sysseek ($self->{handle},
		$self->{block_length}*($self->{current_block}-1)+$self->{header_length},0) ;
	sysread ($self->{handle},$dummy,2) || 
		die "Cannot read data block N",$self->{current_block},": $!\n" ;
	$self->{next_block} = unpack ('v',$dummy) ;
	sysread ($self->{handle},$dummy,2) || 
		die "Cannot read data block N",$self->{current_block},": $!\n" ;
	sysread ($self->{handle},$dummy,2) || 
		die "Cannot read data block N",$self->{current_block},": $!\n" ;
	$self->{last_record_offset} = unpack ('v',$dummy) ;
	$self->{current_used_block}++ ;
}

# new object creating

sub new {
	my $class = shift ;
	my $new = bless {}, $class ;
	$new->{handle} = IO::File->new () ;
	return $new->open (@_) ;
}

# open file and initialize all object variables

sub open {
	my $self = shift ;

	die "instance method called on class" unless ref $self ;
	if (!defined ($_[0])) {
		return undef ;
	}
	if (not sysopen ($self->{handle},$_[0],O_RDONLY)) {
		warn "Cannot open file \'",$_[0],"\': $!\n" ;
		return undef ;
	}
	if (not flock ($self->{handle},LOCK_SH)) {
		warn "Cannot lock file \'",$_[0],"\': $!\n" ;
		return undef ;
	}
	return $self->reopen () ;
}

# close file

sub close {
	my $self = shift ;

	die "instance method called on class" unless ref $self ;
	flock ($self->{handle},LOCK_UN) ;
	close ($self->{handle}) ;
}

# unlock and close file

sub DESTROY {
	my $self = shift ;

	$self->close () ;
}

# re-open file being already opened (properly simply return to BOF)

sub reopen {
	my $self = shift ;

	die "instance method called on class" unless ref $self ;
	$self->PX_read_header () ;
	$self->{is_last_block} = 0 ;
	$self->{next_block} = $self->{first_data_block} ;
	$self->{current_used_block} = 0 ;
	$self->{end_of_base} = 0 ;
	$self->{need_read_block} = 1 ;
	return $self ;
}
  #7 (permalink)  
Antiguo 03/06/2006, 05:47
Colaborador
 
Fecha de Ingreso: mayo-2006
Ubicación: Valladolid
Mensajes: 524
Antigüedad: 18 años
Puntos: 11
Código:
# read next record while block is being read
# read record and return its data in array or undef
# BCD, Binary and all BLOBs NOT SUPPORTED!

sub PX_read_record {
	my $self = shift ;
	my (@result) ;
	my ($a,$i,$dummy) ;
	
	die "instance method called on class" unless ref $self ;
	if ($self->{current_record_offset}<$self->{last_record_offset}) {
		$self->{need_read_block} = 0 ;
	}
	else {
		$self->{need_read_block} = 1 ;
	}
	if ($self->{current_record_offset}>$self->{last_record_offset}) {
		return ;
	}

	sysseek ($self->{handle},$self->{block_length}*($self->{current_block}-1)+
		$self->{header_length}+6+$self->{current_record_offset},0) || 
		die "Cannot make seek to record: $!\n" ;

	$self->{current_record_offset} += $self->{record_length} ;
	undef @result ;
	for ($i = 0 ; $i<$self->{all_fields} ; $i++) {
# BCD type has a fixed length
		if (${$self->{field_type}}[$i]==0x17) {
			sysread ($self->{handle},$dummy,17) ||
				die "Cannot read record: $!\n" ;
		}
		else {
			sysread ($self->{handle},$dummy,${$self->{field_length}}[$i]) ||
				die "Cannot read record: $!\n" ;
		}
		if (${$self->{field_type}}[$i]==1) {
# Field A
			$a = unpack ('Z' . ${$self->{field_length}}[$i],$dummy) ;
			if (0xc0==$self->{sort_order} && 866==$self->{code_page}) {
				push (@result,alt2koi ($a)) ;
			}
			elsif (0x4c==$self->{sort_order} && 
				(1252==$self->{code_page} || 1251==$self->{code_page})) {
				push (@result,win2koi ($a)) ;
			}
			else {
				push (@result,$a) ;
			}
		}
		elsif (${$self->{field_type}}[$i]==2) {
# Field D
			if (${$self->{field_length}}[$i]==4) {
				push (@result,&paradox_date_to_scalar ($dummy)) ;
			}
			else {
				push (@result,"-*%& UNSUPPORTED &%*-") ;
			}
		}
		elsif (${$self->{field_type}}[$i]==3) {
# Field S 
			if (${$self->{field_length}}[$i]==2) {
				push (@result,&paradox_short_to_scalar ($dummy)) ;
			}
			else {
				push (@result,"-*%& UNSUPPORTED &%*-") ;
			}
		}
		elsif (${$self->{field_type}}[$i]==4) {
# Field I
			if (${$self->{field_length}}[$i]==4) {
				push (@result,&paradox_long_to_scalar ($dummy)) ;
			}
			else {
				push (@result,"-*%& UNSUPPORTED &%*-") ;
			}
		}
		elsif (${$self->{field_type}}[$i]==5) {
# Field $
			if (${$self->{field_length}}[$i]==8) {
				push (@result,&paradox_number_to_scalar ($dummy)) ;
			}
			else {
				push (@result,"-*%& UNSUPPORTED &%*-") ;
			}
		}
		elsif (${$self->{field_type}}[$i]==6) {
# Field N
			if (${$self->{field_length}}[$i]==8) {
				push (@result,&paradox_number_to_scalar ($dummy)) ;
			}
			else {
				push (@result,"-*%& UNSUPPORTED &%*-") ;
			}
		}
		elsif (${$self->{field_type}}[$i]==9) {
# Field L
			if (${$self->{field_length}}[$i]==1) {
				push (@result,&paradox_logic_to_scalar ($dummy)) ;
			}
			else {
				push (@result,"-*%& UNSUPPORTED &%*-") ;
			}
		}
		elsif (${$self->{field_type}}[$i]==0x14) {
# Field T
			if (${$self->{field_length}}[$i]==4) {
				push (@result,&paradox_time_to_scalar ($dummy)) ;
			}
			else {
				push (@result,"-*%& UNSUPPORTED &%*-") ;
			}
		}
		elsif (${$self->{field_type}}[$i]==0x15) {
# Field @
			if (${$self->{field_length}}[$i]==8) {
				push (@result,&paradox_timestamp_to_scalar ($dummy)) ;
			}
			else {
				push (@result,"-*%& UNSUPPORTED &%*-") ;
			}
		}
		elsif (${$self->{field_type}}[$i]==0x16) {
# Field +
			if (${$self->{field_length}}[$i]==4) {
				push (@result,&paradox_long_to_scalar ($dummy)) ;
			}
			else {
				push (@result,"-*%& UNSUPPORTED &%*-") ;
			}
		}
		elsif (${$self->{field_type}}[$i]==0x17) {
# Field #
			push (@result,"-*%& UNSUPPORTED &%*-") ;
		}
		else {
			push (@result,"-*%& UNSUPPORTED &%*-") ;
		}
	}
	return @result ;
}

# read next record 

sub fetch {
	my $self = shift ;
	
	die "instance method called on class" unless ref $self ;
	if ($self->{end_of_base}) {
		return ;
	}
	if ($self->{need_read_block}) {
		for ( ; !$self->{is_last_block} && $self->{current_used_block}<=$self->{all_used_blocks} ; ) {
			$self->{current_block} = $self->{next_block} ;
			$self->PX_read_data_block () ;
			if ($self->{next_block}==0) {
				$self->{is_last_block} = 1 ;
			}
			if ($self->{last_record_offset}<0 || 
				$self->{last_record_offset}>$self->{block_length}-$self->{record_length}) {
				next ;
			}
			$self->{current_record_offset} = 0 ;
			return $self->PX_read_record () ;
		}
		$self->{end_of_base} = 1 ;
		return ;
	}
	return $self->PX_read_record () ;
}

# read next record as hash ("field name" => "value")

sub get_record_as_hash {
	my $self = shift ;
	my $result = {} ;
	my @record_data ;

	if (not (@record_data = $self->fetch (@_))) {
		return ;
	}
	@{$result}{@{$self->{field_name}}} = @record_data ;
	return %$result ;
}

1 ;

# Usage:
#
#use Paradox ;
#
#$d = new Paradox "path/to/file.db" ;
#print "Header:\n" ;
#print join ("|",@{$d->{field_type}}),"\n" ;
#print join ("|",@{$d->{field_length}}),"\n" ;
#print join ("|",@{$d->{field_name}}),"\n" ;
#print "Data:\n" ;
#while (@record_data = $d->fetch ()) {
#	print join ("|",@record_data),"\n" ;
#}
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 04:52.