Subversion Repositories ORC

Rev

Rev 29 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 29 Rev 33
Line 205... Line 205...
205
sub getData {
205
sub getData {
206
	my $fields = shift;
206
	my $fields = shift;
207
	my $whereClause = shift;
207
	my $whereClause = shift;
208
	my $table = shift;
208
	my $table = shift;
209
	my $orderby = shift;
209
	my $orderby = shift;
210
	my $curpage = shift // 0; 
210
	my $curpage = shift; $curpage = 1 unless $curpage;
211
	my $pagelimit = shift // "All";
211
	my $pagelimit = shift // "All";
Line 212... Line 212...
212
	
212
	
213
	my $selected = '*';
213
	my $selected = '*';