File: 28array_bind.t

package info (click to toggle)
libdbd-oracle-perl 1.83-3
  • links: PTS, VCS
  • area: contrib
  • in suites: sid
  • size: 1,724 kB
  • sloc: ansic: 8,354; perl: 7,868; makefile: 20
file content (346 lines) | stat: -rw-r--r-- 9,700 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
#!perl

## ----------------------------------------------------------------------------
## 26array_bind.t
## By Alexander V Alekseev
## and John Scoles, The Pythian Group
##
## ----------------------------------------------------------------------------
##  Checking bind_param_inout to an varchar2_table and number_table
##  Checking bind_param_inout_array with execute_array
##
## ----------------------------------------------------------------------------

use strict;
use warnings;

use lib 't/lib';
use DBDOracleTestLib qw/
    set_nls_lang_charset set_nls_nchar oracle_test_dsn db_handle
/;

use Encode;
use Devel::Peek;

use DBI;
use DBD::Oracle qw(:ora_types ORA_OCI);

use Test::More;

use Data::Dumper;
$Data::Dumper::Useqq = 1;

my $dbh;

my $utf8_charset = ( ORA_OCI >= 9.2 ) ? 'AL32UTF8' : 'UTF8';
my $eight_bit_charset = 'WE8ISO8859P1';

sub db_connect {
    my $utf8 = shift;

    # Make sure we really are overriding the environment settings.
    my ( $charset, $ncharset );
    if ($utf8) {
        set_nls_lang_charset($eight_bit_charset);
        set_nls_nchar($eight_bit_charset);
        $charset  = $utf8_charset;
        $ncharset = $utf8_charset;
    }
    else {
        set_nls_lang_charset($utf8_charset);
        set_nls_nchar($utf8_charset);
        $charset  = $eight_bit_charset;
        $ncharset = $eight_bit_charset;
    }

    my $p = {
        AutoCommit       => 1,
        PrintError       => 0,
        FetchHashKeyName => 'NAME_lc',
        ora_envhp => 0,    # force fresh environment (with current NLS env vars)
    };
    $p->{ora_charset}  = $charset  if $charset;
    $p->{ora_ncharset} = $ncharset if $ncharset;

    my $dbh = db_handle( $p );
    return $dbh;
}

sub test_varchar2_table_3_tests($) {
    my $dbh       = shift;
    my $statement = q|
        DECLARE
                tbl SYS.DBMS_SQL.VARCHAR2_TABLE;
        BEGIN
                tbl := :mytable;
                :cc := tbl.count();
                tbl(1) := 'def';
                tbl(2) := 'ijk';
                :mytable := tbl;
        END;
        |;

    my $sth = $dbh->prepare($statement);

    if ( !defined($sth) ) {
        BAIL_OUT( 'Prapare(varchar2) error: ' . $dbh->errstr );
    }

    my @arr = ( 'abc', 'cde', 'lalala' );

    if (
        not $sth->bind_param_inout(
            ':mytable',
            \\@arr,
            5,
            {
                ora_type                => ORA_VARCHAR2_TABLE,
                ora_maxarray_numentries => 2
            }
        )
      )
    {
        BAIL_OUT( 'bind  :mytable (VARCHAR2) error: ' . $dbh->errstr );
    }
    my $cc;
    if ( not $sth->bind_param_inout( ':cc', \$cc, 100 ) ) {
        BAIL_OUT( 'bind :cc (at VARCHAR2) error: ' . $dbh->errstr );
    }

    if ( not $sth->execute() ) {
        BAIL_OUT( 'Execute (at VARCHAR2) failed: ' . $dbh->errstr );
    }

    #        print        "Result: cc=",$cc,"\n",
    #        "\tarr=",Data::Dumper::Dumper(\@arr),"\n";

    #Result: cc=2, l=3
    #        arr=$VAR1 = [
    #          'def',
    #          'ijk'
    #        ];
    #

    ok( $cc == 2,          'VARCHAR2_TABLE input count correctness' );
    ok( scalar(@arr) == 2, 'VARCHAR2_TABLE output count correctness' );
    ok( ( ( $arr[0] eq 'def' ) and ( $arr[1] eq 'ijk' ) ),
        'VARCHAR2_TABLE output content' )
      or diag( "arr[0]='", $arr[0], "', arr[1]='", $arr[1], "', arr=",
        Data::Dumper::Dumper( \@arr ) );
}

sub test_number_table_3_tests {
    my $dbh       = shift;
    my $statement = q|
        DECLARE
                tbl SYS.DBMS_SQL.NUMBER_TABLE;
        BEGIN
                tbl := :mytable;
                :cc := tbl.count();
                tbl(4) := -1;
                tbl(5) := -2;
                :mytable := tbl;
        END;
        |;

    my $sth = $dbh->prepare($statement);

    if ( !defined($sth) ) {
        BAIL_OUT( 'Prapare(NUMBER_TABLE) error: ' . $dbh->errstr );
    }

    my @arr = ( 1, '2E0', '3.5' );

    # note, that ora_internal_type defaults to SQLT_FLT for ORA_NUMBER_TABLE .

    if (
        not $sth->bind_param_inout(
            ':mytable',
            \\@arr,
            10,
            {
                ora_type                => ORA_NUMBER_TABLE,
                ora_maxarray_numentries => ( scalar(@arr) + 2 ),
                ora_internal_type       => SQLT_INT
            }
        )
      )
    {
        BAIL_OUT( 'bind(NUMBER_TABLE) :mytable error: ' . $dbh->errstr );
    }
    my $cc = undef;
    if ( not $sth->bind_param_inout( ':cc', \$cc, 100 ) ) {
        BAIL_OUT( 'bind(NUMBER_TABLE) :cc error: ' . $dbh->errstr );
    }

    if ( not $sth->execute() ) {
        BAIL_OUT( 'Execute(NUMBER_TABLE) failed: ' . $dbh->errstr );
    }

    # print        "Result: cc=",$cc,"\n",
    # "\tarr=",Data::Dumper::Dumper(\@arr),"\n";

    #Result: cc=3
    #        arr=$VAR1 = [
    #          '5',
    #          '8',
    #          '3.5',
    #          '-1',
    #          '-2'
    #        ];

    ok( $cc == 3,          'NUMBER_TABLE input count correctness' );
    ok( scalar(@arr) == 5, 'NUMBER_TABLE output count correctness' );
    my $result = 1;
    my @r = ( 1, 2, 3, -1, -2 );
    for ( my $i = 0 ; $i < scalar(@arr) ; $i++ ) {
        if ( $r[$i] != $arr[$i] ) {
            $result = 0;
            last;
        }
    }
    ok( $result, 'NUMBER_TABLE output content' )
      or diag(
        'arr=',
        Data::Dumper::Dumper( \@arr ),
        "\nThough must be: ",
        Data::Dumper::Dumper( \@r )
      );
}

sub test_inout_array_tests {
    my $dbh     = shift;
    my $table   = 'array_io_test__drop_me' . ( $ENV{DBD_ORACLE_SEQ} || '' );
    my $seq     = 'seq_io_test__drop_me' . ( $ENV{DBD_ORACLE_SEQ} || '' );
    my $trigger = 'trg_io_test__drop_me' . ( $ENV{DBD_ORACLE_SEQ} || '' );
    $dbh->do(
"create table $table (id number(12,0), name varchar2(20), value varchar2(2000))"
    );
    $dbh->do("create sequence $seq start with 1");
    $dbh->do(
        qq/
                create or replace trigger $trigger
                before insert
                on $table
                for each row
                DECLARE
                        iCounter $table.id%TYPE;
                BEGIN
                        if INSERTING THEN
                                Select $seq.nextval INTO iCounter FROM Dual;
                                :new.id := iCounter;
                        END IF;
                END;
        /
    );

    my @in_array1 = ( 'one', 'two', 'three', 'four', 'five' );
    my @in_array2 = ( '5',   '4',   '3',     '2',    '1' );
    my @out_array;
    my @tuple_status;

    my $sql =
      "insert into $table (name, value) values (?,?) returning id into ?";

    my $sth = $dbh->prepare($sql);

    $sth->bind_param_array( 1, \@in_array1 );
    $sth->bind_param_array( 2, \@in_array2 );
    ok(
        $sth->bind_param_inout_array(
            3, \@out_array, 0, { ora_type => ORA_VARCHAR2 }
        ),
        '... bind_param_inout_array should return false'
    );

    ok( $sth->execute_array( { ArrayTupleStatus => \@tuple_status } ),
        '... execute_array should return false' );

    cmp_ok( scalar(@tuple_status), '==', 5,
        '... we should have 19 tuple_status' );
    cmp_ok( scalar(@out_array), '==', 5, '... we should have 5 out_array' );
    cmp_ok( $out_array[0],      '==', 1, '... out values should match 1' );
    cmp_ok( $out_array[1],      '==', 2, '... out values should match 2' );
    cmp_ok( $out_array[2],      '==', 3, '... out values should match 3' );
    cmp_ok( $out_array[3],      '==', 4, '... out values should match 3' );
    cmp_ok( $out_array[4],      '==', 5, '... out values should match 5' );

    $dbh->do("drop table $table")  or warn $dbh->errstr;
    $dbh->do("drop sequence $seq") or die $dbh->errstr;

}

# FIXME this is orphaned? See https://github.com/pythian/DBD-Oracle/issues/64
sub test_number_SP {
    my $dbh = shift;
    $dbh->do(
        <<'EOF'
                create or replace procedure tox_test_proc0(
                        result   in out varchar2,
                        ids      in     SYS.dbms_sql.number_table
                )
                as
                begin
                        result := '';
                        for i in 1..ids.count loop
                                result := result || to_char(ids(i));
                        end loop;
                end;
EOF
    );

    my $sth = $dbh->prepare('begin tox_test_proc0( ?, ?); end;');

    my $result = '';
    my @array = ( 1, 2, 3, 4, 7 );

    $sth->bind_param_inout( 1, \$result, 5 );
    ok(
        $sth->bind_param(
            2, \@array,
            { ora_type => ORA_NUMBER_TABLE, ora_internal_type => SQLT_INT }
        ),
        '... bind_param_inout_array should bind 12345'
    );
    $sth->execute();
    cmp_ok( $result, '==', '12347', '... we should have 12347 out string' );

    @array = ( 3, 4, 5 );

    $sth->bind_param_inout( 1, \$result, 3 );
    ok(
        $sth->bind_param(
            2, \@array,
            { ora_type => ORA_NUMBER_TABLE, ora_internal_type => SQLT_INT }
        ),
        '... bind_param_inout_array should bind 345'
    );
    $sth->execute();
    cmp_ok( $result, '==', '345', '... we should have 345 out string' );

    $dbh->do('drop procedure tox_test_proc0') or warn $dbh->errstr;

}

SKIP: {
    $dbh = db_connect(0);

    if ($dbh) {
        plan tests => 19;
    }
    else {
        plan skip_all => 'Unable to connect to Oracle' if not $dbh;
    }

    test_varchar2_table_3_tests($dbh);
    test_number_table_3_tests($dbh);
    test_inout_array_tests($dbh);
    test_number_SP($dbh);

}

END {
    eval { local $dbh->{PrintError} = 0; };
}

1;