MsiRow.pm (c9b362f6) MsiRow.pm (9f91b7e3)
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 85 unchanged lines hidden (view full) ---

94 $self->{'values'}->[$column_index] = $value;
95 }
96 $self->{'table'}->MarkAsModified();
97}
98
99
100
101
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 85 unchanged lines hidden (view full) ---

94 $self->{'values'}->[$column_index] = $value;
95 }
96 $self->{'table'}->MarkAsModified();
97}
98
99
100
101
102sub GetAllValues ($)
103{
104 my ($self) = @_;
105 return @{$self->{'values'}};
106}
107
108
109
110
102sub Format ($$)
103{
104 my $self = shift;
105 my $concatenation = shift;
106
107 my $result = "";
108 my $first = 1;
109 my $index = 0;

--- 51 unchanged lines hidden ---
111sub Format ($$)
112{
113 my $self = shift;
114 my $concatenation = shift;
115
116 my $result = "";
117 my $first = 1;
118 my $index = 0;

--- 51 unchanged lines hidden ---