forked from HvyIndustries/crane-php-stubs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
odbc.php
989 lines (941 loc) · 30.3 KB
/
odbc.php
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
<?php
// Start of odbc v.7.0.4-7ubuntu2
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Toggle autocommit behaviour
* @link http://php.net/manual/en/function.odbc-autocommit.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param bool $OnOff [optional] <p>
* If <i>OnOff</i> is <b>TRUE</b>, auto-commit is enabled, if
* it is <b>FALSE</b> auto-commit is disabled.
* </p>
* @return mixed Without the <i>OnOff</i> parameter, this function returns
* auto-commit status for <i>connection_id</i>. Non-zero is
* returned if auto-commit is on, 0 if it is off, or <b>FALSE</b> if an error
* occurs.
* </p>
* <p>
* If <i>OnOff</i> is set, this function returns <b>TRUE</b> on
* success and <b>FALSE</b> on failure.
*/
function odbc_autocommit($connection_id, bool $OnOff = false) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Handling of binary column data
* @link http://php.net/manual/en/function.odbc-binmode.php
* @param resource $result_id <p>
* The result identifier.
* </p>
* <p>
* If <i>result_id</i> is 0, the
* settings apply as default for new results.
* Default for longreadlen is 4096 and
* <i>mode</i> defaults to
* ODBC_BINMODE_RETURN. Handling of binary long
* columns is also affected by <b>odbc_longreadlen</b>.
* </p>
* @param int $mode <p>
* Possible values for <i>mode</i> are:
* <b>ODBC_BINMODE_PASSTHRU</b>: Passthru BINARY data
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function odbc_binmode($result_id, int $mode): bool {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Close an ODBC connection
* @link http://php.net/manual/en/function.odbc-close.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @return void No value is returned.
*/
function odbc_close($connection_id) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Close all ODBC connections
* @link http://php.net/manual/en/function.odbc-close-all.php
* @return void No value is returned.
*/
function odbc_close_all() {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Lists the column names in specified tables
* @link http://php.net/manual/en/function.odbc-columns.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param string $qualifier [optional] <p>
* The qualifier.
* </p>
* @param string $schema [optional] <p>
* The owner.
* </p>
* @param string $table_name [optional] <p>
* The table name.
* </p>
* @param string $column_name [optional] <p>
* The column name.
* </p>
* @return resource an ODBC result identifier or <b>FALSE</b> on failure.
* </p>
* <p>
* The result set has the following columns:
* TABLE_QUALIFIER
* TABLE_SCHEM
* TABLE_NAME
* COLUMN_NAME
* DATA_TYPE
* TYPE_NAME
* PRECISION
* LENGTH
* SCALE
* RADIX
* NULLABLE
* REMARKS
* </p>
* <p>
* The result set is ordered by TABLE_QUALIFIER, TABLE_SCHEM and
* TABLE_NAME.
*/
function odbc_columns($connection_id, string $qualifier = null, string $schema = null, string $table_name = null, string $column_name = null) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Commit an ODBC transaction
* @link http://php.net/manual/en/function.odbc-commit.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function odbc_commit($connection_id): bool {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Connect to a datasource
* @link http://php.net/manual/en/function.odbc-connect.php
* @param string $dsn <p>
* The database source name for the connection. Alternatively, a
* DSN-less connection string can be used.
* </p>
* @param string $user <p>
* The username.
* </p>
* @param string $password <p>
* The password.
* </p>
* @param int $cursor_type [optional] <p>
* This sets the type of cursor to be used
* for this connection. This parameter is not normally needed, but
* can be useful for working around problems with some ODBC drivers.
* </p>
* The following constants are defined for cursortype:
* <p>
* SQL_CUR_USE_IF_NEEDED
* @return resource an ODBC connection or (<b>FALSE</b>) on error.
*/
function odbc_connect(string $dsn, string $user, string $password, int $cursor_type = null) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Get cursorname
* @link http://php.net/manual/en/function.odbc-cursor.php
* @param resource $result_id <p>
* The result identifier.
* </p>
* @return string the cursor name, as a string.
*/
function odbc_cursor($result_id): string {}
/**
* (PHP 4 >= 4.3.0, PHP 5, PHP 7)<br/>
* Returns information about a current connection
* @link http://php.net/manual/en/function.odbc-data-source.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param int $fetch_type <p>
* The <i>fetch_type</i> can be one of two constant types:
* <b>SQL_FETCH_FIRST</b>, <b>SQL_FETCH_NEXT</b>.
* Use <b>SQL_FETCH_FIRST</b> the first time this function is
* called, thereafter use the <b>SQL_FETCH_NEXT</b>.
* </p>
* @return array <b>FALSE</b> on error, and an array upon success.
*/
function odbc_data_source($connection_id, int $fetch_type): array {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Execute a prepared statement
* @link http://php.net/manual/en/function.odbc-execute.php
* @param resource $result_id <p>
* The result id resource, from <b>odbc_prepare</b>.
* </p>
* @param array $parameters_array [optional] <p>
* Parameters in <i>parameter_array</i> will be
* substituted for placeholders in the prepared statement in order.
* Elements of this array will be converted to strings by calling this
* function.
* </p>
* <p>
* Any parameters in <i>parameter_array</i> which
* start and end with single quotes will be taken as the name of a
* file to read and send to the database server as the data for the
* appropriate placeholder.
* </p>
* If you wish to store a string which actually begins and ends with
* single quotes, you must add a space or other non-single-quote character
* to the beginning or end of the parameter, which will prevent the
* parameter from being taken as a file name. If this is not an option,
* then you must use another mechanism to store the string, such as
* executing the query directly with <b>odbc_exec</b>).
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function odbc_execute($result_id, array $parameters_array = null): bool {}
/**
* (PHP 4 >= 4.0.5, PHP 5, PHP 7)<br/>
* Get the last error code
* @link http://php.net/manual/en/function.odbc-error.php
* @param resource $connection_id [optional] The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @return string If <i>connection_id</i> is specified, the last state
* of that connection is returned, else the last state of any connection
* is returned.
* </p>
* <p>
* This function returns meaningful value only if last odbc query failed
* (i.e. <b>odbc_exec</b> returned <b>FALSE</b>).
*/
function odbc_error($connection_id = null): string {}
/**
* (PHP 4 >= 4.0.5, PHP 5, PHP 7)<br/>
* Get the last error message
* @link http://php.net/manual/en/function.odbc-errormsg.php
* @param resource $connection_id [optional] The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @return string If <i>connection_id</i> is specified, the last state
* of that connection is returned, else the last state of any connection
* is returned.
* </p>
* <p>
* This function returns meaningful value only if last odbc query failed
* (i.e. <b>odbc_exec</b> returned <b>FALSE</b>).
*/
function odbc_errormsg($connection_id = null): string {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Prepare and execute an SQL statement
* @link http://php.net/manual/en/function.odbc-exec.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param string $query_string <p>
* The SQL statement.
* </p>
* @param int $flags [optional] <p>
* This parameter is currently not used.
* </p>
* @return resource an ODBC result identifier if the SQL command was executed
* successfully, or <b>FALSE</b> on error.
*/
function odbc_exec($connection_id, string $query_string, int $flags = null) {}
/**
* (PHP 4 >= 4.0.2, PHP 5, PHP 7)<br/>
* Fetch a result row as an associative array
* @link http://php.net/manual/en/function.odbc-fetch-array.php
* @param resource $result <p>
* The result resource from <b>odbc_exec</b>.
* </p>
* @param int $rownumber [optional] <p>
* Optionally choose which row number to retrieve.
* </p>
* @return array an array that corresponds to the fetched row, or <b>FALSE</b> if there
* are no more rows.
*/
function odbc_fetch_array($result, int $rownumber = null): array {}
/**
* (PHP 4 >= 4.0.2, PHP 5, PHP 7)<br/>
* Fetch a result row as an object
* @link http://php.net/manual/en/function.odbc-fetch-object.php
* @param resource $result <p>
* The result resource from <b>odbc_exec</b>.
* </p>
* @param int $rownumber [optional] <p>
* Optionally choose which row number to retrieve.
* </p>
* @return object an object that corresponds to the fetched row, or <b>FALSE</b> if there
* are no more rows.
*/
function odbc_fetch_object($result, int $rownumber = null) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Fetch a row
* @link http://php.net/manual/en/function.odbc-fetch-row.php
* @param resource $result_id <p>
* The result identifier.
* </p>
* @param int $row_number [optional] <p>
* If <i>row_number</i> is not specified,
* <b>odbc_fetch_row</b> will try to fetch the next row in
* the result set. Calls to <b>odbc_fetch_row</b> with and
* without <i>row_number</i> can be mixed.
* </p>
* <p>
* To step through the result more than once, you can call
* <b>odbc_fetch_row</b> with
* <i>row_number</i> 1, and then continue doing
* <b>odbc_fetch_row</b> without
* <i>row_number</i> to review the result. If a driver
* doesn't support fetching rows by number, the
* <i>row_number</i> parameter is ignored.
* </p>
* @return bool <b>TRUE</b> if there was a row, <b>FALSE</b> otherwise.
*/
function odbc_fetch_row($result_id, int $row_number = null): bool {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Fetch one result row into array
* @link http://php.net/manual/en/function.odbc-fetch-into.php
* @param resource $result_id <p>
* The result resource.
* </p>
* @param array $result_array <p>
* The result array
* that can be of any type since it will be converted to type
* array. The array will contain the column values starting at array
* index 0.
* </p>
* @param int $rownumber [optional] <p>
* The row number.
* </p>
* @return int the number of columns in the result;
* <b>FALSE</b> on error.
*/
function odbc_fetch_into($result_id, array &$result_array, int $rownumber = null): int {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Get the length (precision) of a field
* @link http://php.net/manual/en/function.odbc-field-len.php
* @param resource $result_id <p>
* The result identifier.
* </p>
* @param int $field_number <p>
* The field number. Field numbering starts at 1.
* </p>
* @return int the field length, or <b>FALSE</b> on error.
*/
function odbc_field_len($result_id, int $field_number): int {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Get the scale of a field
* @link http://php.net/manual/en/function.odbc-field-scale.php
* @param resource $result_id <p>
* The result identifier.
* </p>
* @param int $field_number <p>
* The field number. Field numbering starts at 1.
* </p>
* @return int the field scale as a integer, or <b>FALSE</b> on error.
*/
function odbc_field_scale($result_id, int $field_number): int {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Get the columnname
* @link http://php.net/manual/en/function.odbc-field-name.php
* @param resource $result_id <p>
* The result identifier.
* </p>
* @param int $field_number <p>
* The field number. Field numbering starts at 1.
* </p>
* @return string the field name as a string, or <b>FALSE</b> on error.
*/
function odbc_field_name($result_id, int $field_number): string {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Datatype of a field
* @link http://php.net/manual/en/function.odbc-field-type.php
* @param resource $result_id <p>
* The result identifier.
* </p>
* @param int $field_number <p>
* The field number. Field numbering starts at 1.
* </p>
* @return string the field type as a string, or <b>FALSE</b> on error.
*/
function odbc_field_type($result_id, int $field_number): string {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Return column number
* @link http://php.net/manual/en/function.odbc-field-num.php
* @param resource $result_id <p>
* The result identifier.
* </p>
* @param string $field_name <p>
* The field name.
* </p>
* @return int the field number as a integer, or <b>FALSE</b> on error.
* Field numbering starts at 1.
*/
function odbc_field_num($result_id, string $field_name): int {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Free resources associated with a result
* @link http://php.net/manual/en/function.odbc-free-result.php
* @param resource $result_id <p>
* The result identifier.
* </p>
* @return bool Always returns <b>TRUE</b>.
*/
function odbc_free_result($result_id): bool {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Retrieves information about data types supported by the data source
* @link http://php.net/manual/en/function.odbc-gettypeinfo.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param int $data_type [optional] <p>
* The data type, which can be used to restrict the information to a
* single data type.
* </p>
* @return resource an ODBC result identifier or
* <b>FALSE</b> on failure.
* </p>
* <p>
* The result set has the following columns:
* TYPE_NAME
* DATA_TYPE
* PRECISION
* LITERAL_PREFIX
* LITERAL_SUFFIX
* CREATE_PARAMS
* NULLABLE
* CASE_SENSITIVE
* SEARCHABLE
* UNSIGNED_ATTRIBUTE
* MONEY
* AUTO_INCREMENT
* LOCAL_TYPE_NAME
* MINIMUM_SCALE
* MAXIMUM_SCALE
* </p>
* <p>
* The result set is ordered by DATA_TYPE and TYPE_NAME.
*/
function odbc_gettypeinfo($connection_id, int $data_type = null) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Handling of LONG columns
* @link http://php.net/manual/en/function.odbc-longreadlen.php
* @param resource $result_id <p>
* The result identifier.
* </p>
* @param int $length <p>
* The number of bytes returned to PHP is controlled by the parameter
* length. If it is set to 0, Long column data is passed through to the
* client.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function odbc_longreadlen($result_id, int $length): bool {}
/**
* (PHP 4 >= 4.0.5, PHP 5, PHP 7)<br/>
* Checks if multiple results are available
* @link http://php.net/manual/en/function.odbc-next-result.php
* @param resource $result_id <p>
* The result identifier.
* </p>
* @return bool <b>TRUE</b> if there are more result sets, <b>FALSE</b> otherwise.
*/
function odbc_next_result($result_id): bool {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Number of columns in a result
* @link http://php.net/manual/en/function.odbc-num-fields.php
* @param resource $result_id <p>
* The result identifier returned by <b>odbc_exec</b>.
* </p>
* @return int the number of fields, or -1 on error.
*/
function odbc_num_fields($result_id): int {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Number of rows in a result
* @link http://php.net/manual/en/function.odbc-num-rows.php
* @param resource $result_id <p>
* The result identifier returned by <b>odbc_exec</b>.
* </p>
* @return int the number of rows in an ODBC result.
* This function will return -1 on error.
*/
function odbc_num_rows($result_id): int {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Open a persistent database connection
* @link http://php.net/manual/en/function.odbc-pconnect.php
* @param string $dsn
* @param string $user
* @param string $password
* @param int $cursor_type [optional]
* @return resource an ODBC connection id or 0 (<b>FALSE</b>) on
* error.
*/
function odbc_pconnect(string $dsn, string $user, string $password, int $cursor_type = null) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Prepares a statement for execution
* @link http://php.net/manual/en/function.odbc-prepare.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param string $query_string <p>
* The query string statement being prepared.
* </p>
* @return resource an ODBC result identifier if the SQL command was prepared
* successfully. Returns <b>FALSE</b> on error.
*/
function odbc_prepare($connection_id, string $query_string) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Get result data
* @link http://php.net/manual/en/function.odbc-result.php
* @param resource $result_id <p>
* The ODBC resource.
* </p>
* @param mixed $field <p>
* The field name being retrieved. It can either be an integer containing
* the column number of the field you want; or it can be a string
* containing the name of the field.
* </p>
* @return mixed the string contents of the field, <b>FALSE</b> on error, <b>NULL</b> for
* NULL data, or <b>TRUE</b> for binary data.
*/
function odbc_result($result_id, $field) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Print result as HTML table
* @link http://php.net/manual/en/function.odbc-result-all.php
* @param resource $result_id <p>
* The result identifier.
* </p>
* @param string $format [optional] <p>
* Additional overall table formatting.
* </p>
* @return int the number of rows in the result or <b>FALSE</b> on error.
*/
function odbc_result_all($result_id, string $format = null): int {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Rollback a transaction
* @link http://php.net/manual/en/function.odbc-rollback.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function odbc_rollback($connection_id): bool {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Adjust ODBC settings
* @link http://php.net/manual/en/function.odbc-setoption.php
* @param resource $id <p>
* Is a connection id or result id on which to change the settings.
* For SQLSetConnectOption(), this is a connection id.
* For SQLSetStmtOption(), this is a result id.
* </p>
* @param int $function <p>
* Is the ODBC function to use. The value should be
* 1 for SQLSetConnectOption() and
* 2 for SQLSetStmtOption().
* </p>
* @param int $option <p>
* The option to set.
* </p>
* @param int $param <p>
* The value for the given <i>option</i>.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function odbc_setoption($id, int $function, int $option, int $param): bool {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Retrieves special columns
* @link http://php.net/manual/en/function.odbc-specialcolumns.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param int $type When the type argument is <b>SQL_BEST_ROWID</b>,
* <b>odbc_specialcolumns</b> returns the
* column or columns that uniquely identify each row in the table.
* When the type argument is <b>SQL_ROWVER</b>,
* <b>odbc_specialcolumns</b> returns the column or columns in the
* specified table, if any, that are automatically updated by the data source
* when any value in the row is updated by any transaction.
* @param string $qualifier <p>
* The qualifier.
* </p>
* @param string $owner <p>
* The owner.
* </p>
* @param string $table <p>
* The table.
* </p>
* @param int $scope <p>
* The scope, which orders the result set.
* </p>
* @param int $nullable <p>
* The nullable option.
* </p>
* @return resource an ODBC result identifier or <b>FALSE</b> on
* failure.
* </p>
* <p>
* The result set has the following columns:
* SCOPE
* COLUMN_NAME
* DATA_TYPE
* TYPE_NAME
* PRECISION
* LENGTH
* SCALE
* PSEUDO_COLUMN
*/
function odbc_specialcolumns($connection_id, int $type, string $qualifier, string $owner, string $table, int $scope, int $nullable) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Retrieve statistics about a table
* @link http://php.net/manual/en/function.odbc-statistics.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param string $qualifier <p>
* The qualifier.
* </p>
* @param string $owner <p>
* The owner.
* </p>
* @param string $table_name <p>
* The table name.
* </p>
* @param int $unique <p>
* The unique attribute.
* </p>
* @param int $accuracy <p>
* The accuracy.
* </p>
* @return resource an ODBC result identifier or <b>FALSE</b> on failure.
* </p>
* <p>
* The result set has the following columns:
* TABLE_QUALIFIER
* TABLE_OWNER
* TABLE_NAME
* NON_UNIQUE
* INDEX_QUALIFIER
* INDEX_NAME
* TYPE
* SEQ_IN_INDEX
* COLUMN_NAME
* COLLATION
* CARDINALITY
* PAGES
* FILTER_CONDITION
*/
function odbc_statistics($connection_id, string $qualifier, string $owner, string $table_name, int $unique, int $accuracy) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Get the list of table names stored in a specific data source
* @link http://php.net/manual/en/function.odbc-tables.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param string $qualifier [optional] <p>
* The qualifier.
* </p>
* @param string $owner [optional] <p>
* The owner. Accepts search patterns ('%' to match zero or more
* characters and '_' to match a single character).
* </p>
* @param string $name [optional] <p>
* The name. Accepts search patterns ('%' to match zero or more
* characters and '_' to match a single character).
* </p>
* @param string $types [optional] <p>
* If <i>table_type</i> is not an empty string, it
* must contain a list of comma-separated values for the types of
* interest; each value may be enclosed in single quotes (') or
* unquoted. For example, "'TABLE','VIEW'" or "TABLE, VIEW". If the
* data source does not support a specified table type,
* <b>odbc_tables</b> does not return any results for
* that type.
* </p>
* @return resource an ODBC result identifier containing the information
* or <b>FALSE</b> on failure.
* </p>
* <p>
* The result set has the following columns:
* TABLE_QUALIFIER
* TABLE_OWNER
* TABLE_NAME
* TABLE_TYPE
* REMARKS
*/
function odbc_tables($connection_id, string $qualifier = null, string $owner = null, string $name = null, string $types = null) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Gets the primary keys for a table
* @link http://php.net/manual/en/function.odbc-primarykeys.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param string $qualifier
* @param string $owner
* @param string $table
* @return resource an ODBC result identifier or <b>FALSE</b> on failure.
* </p>
* <p>
* The result set has the following columns:
* TABLE_QUALIFIER
* TABLE_OWNER
* TABLE_NAME
* COLUMN_NAME
* KEY_SEQ
* PK_NAME
*/
function odbc_primarykeys($connection_id, string $qualifier, string $owner, string $table) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Lists columns and associated privileges for the given table
* @link http://php.net/manual/en/function.odbc-columnprivileges.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param string $qualifier <p>
* The qualifier.
* </p>
* @param string $owner <p>
* The owner.
* </p>
* @param string $table_name <p>
* The table name.
* </p>
* @param string $column_name <p>
* The <i>column_name</i> argument accepts search
* patterns ('%' to match zero or more characters and '_' to match a
* single character).
* </p>
* @return resource an ODBC result identifier or <b>FALSE</b> on failure.
* This result identifier can be used to fetch a list of columns and
* associated privileges.
* </p>
* <p>
* The result set has the following columns:
* TABLE_QUALIFIER
* TABLE_OWNER
* TABLE_NAME
* GRANTOR
* GRANTEE
* PRIVILEGE
* IS_GRANTABLE
* </p>
* <p>
* The result set is ordered by TABLE_QUALIFIER, TABLE_OWNER and
* TABLE_NAME.
*/
function odbc_columnprivileges($connection_id, string $qualifier, string $owner, string $table_name, string $column_name) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Lists tables and the privileges associated with each table
* @link http://php.net/manual/en/function.odbc-tableprivileges.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param string $qualifier <p>
* The qualifier.
* </p>
* @param string $owner <p>
* The owner. Accepts the following search patterns:
* ('%' to match zero or more characters and '_' to match a single character)
* </p>
* @param string $name <p>
* The name. Accepts the following search patterns:
* ('%' to match zero or more characters and '_' to match a single character)
* </p>
* @return resource An ODBC result identifier or <b>FALSE</b> on failure.
* </p>
* <p>
* The result set has the following columns:
* TABLE_QUALIFIER
* TABLE_OWNER
* TABLE_NAME
* GRANTOR
* GRANTEE
* PRIVILEGE
* IS_GRANTABLE
*/
function odbc_tableprivileges($connection_id, string $qualifier, string $owner, string $name) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Retrieves a list of foreign keys
* @link http://php.net/manual/en/function.odbc-foreignkeys.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @param string $pk_qualifier <p>
* The primary key qualifier.
* </p>
* @param string $pk_owner <p>
* The primary key owner.
* </p>
* @param string $pk_table <p>
* The primary key table.
* </p>
* @param string $fk_qualifier <p>
* The foreign key qualifier.
* </p>
* @param string $fk_owner <p>
* The foreign key owner.
* </p>
* @param string $fk_table <p>
* The foreign key table.
* </p>
* @return resource an ODBC result identifier or <b>FALSE</b> on failure.
* </p>
* <p>
* The result set has the following columns:
* PKTABLE_QUALIFIER
* PKTABLE_OWNER
* PKTABLE_NAME
* PKCOLUMN_NAME
* FKTABLE_QUALIFIER
* FKTABLE_OWNER
* FKTABLE_NAME
* FKCOLUMN_NAME
* KEY_SEQ
* UPDATE_RULE
* DELETE_RULE
* FK_NAME
* PK_NAME
* </p>
* If <i>pk_table</i> contains a table name,
* <b>odbc_foreignkeys</b> returns a result set
* containing the primary key of the specified table and all of the
* foreign keys that refer to it.
* If <i>fk_table</i> contains a table name,
* <b>odbc_foreignkeys</b> returns a result set
* containing all of the foreign keys in the specified table and the
* primary keys (in other tables) to which they refer.
* If both <i>pk_table</i> and
* <i>fk_table</i> contain table names,
* <b>odbc_foreignkeys</b> returns the foreign keys in
* the table specified in <i>fk_table</i> that refer
* to the primary key of the table specified in
* <i>pk_table
*/
function odbc_foreignkeys($connection_id, string $pk_qualifier, string $pk_owner, string $pk_table, string $fk_qualifier, string $fk_owner, string $fk_table) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Get the list of procedures stored in a specific data source
* @link http://php.net/manual/en/function.odbc-procedures.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @return resource an ODBC
* result identifier containing the information or <b>FALSE</b> on failure.
* </p>
* <p>
* The result set has the following columns:
* PROCEDURE_QUALIFIER
* PROCEDURE_OWNER
* PROCEDURE_NAME
* NUM_INPUT_PARAMS
* NUM_OUTPUT_PARAMS
* NUM_RESULT_SETS
* REMARKS
* PROCEDURE_TYPE
*/
function odbc_procedures($connection_id) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Retrieve information about parameters to procedures
* @link http://php.net/manual/en/function.odbc-procedurecolumns.php
* @param resource $connection_id The ODBC connection identifier,
* see <b>odbc_connect</b> for details.</p>
* @return resource the list of input and output parameters, as well as the
* columns that make up the result set for the specified procedures.
* Returns an ODBC result identifier or <b>FALSE</b> on failure.
* </p>
* <p>
* The result set has the following columns:
* PROCEDURE_QUALIFIER
* PROCEDURE_OWNER
* PROCEDURE_NAME
* COLUMN_NAME
* COLUMN_TYPE
* DATA_TYPE
* TYPE_NAME
* PRECISION
* LENGTH
* SCALE
* RADIX
* NULLABLE
* REMARKS
*/
function odbc_procedurecolumns($connection_id) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Alias of <b>odbc_exec</b>
* @link http://php.net/manual/en/function.odbc-do.php
* @param $connection_id
* @param $query
* @param $flags [optional]
*/
function odbc_do($connection_id, $query, $flags) {}
/**
* (PHP 4, PHP 5, PHP 7)<br/>
* Alias of <b>odbc_field_len</b>
* @link http://php.net/manual/en/function.odbc-field-precision.php
* @param $result_id
* @param $field_number
*/
function odbc_field_precision($result_id, $field_number) {}
define ('ODBC_TYPE', "unixODBC");
define ('ODBC_BINMODE_PASSTHRU', 0);
define ('ODBC_BINMODE_RETURN', 1);
define ('ODBC_BINMODE_CONVERT', 2);
define ('SQL_ODBC_CURSORS', 110);
define ('SQL_CUR_USE_DRIVER', 2);
define ('SQL_CUR_USE_IF_NEEDED', 0);
define ('SQL_CUR_USE_ODBC', 1);
define ('SQL_CONCURRENCY', 7);
define ('SQL_CONCUR_READ_ONLY', 1);
define ('SQL_CONCUR_LOCK', 2);
define ('SQL_CONCUR_ROWVER', 3);
define ('SQL_CONCUR_VALUES', 4);
define ('SQL_CURSOR_TYPE', 6);
define ('SQL_CURSOR_FORWARD_ONLY', 0);
define ('SQL_CURSOR_KEYSET_DRIVEN', 1);
define ('SQL_CURSOR_DYNAMIC', 2);
define ('SQL_CURSOR_STATIC', 3);
define ('SQL_KEYSET_SIZE', 8);
define ('SQL_FETCH_FIRST', 2);
define ('SQL_FETCH_NEXT', 1);
define ('SQL_CHAR', 1);
define ('SQL_VARCHAR', 12);
define ('SQL_LONGVARCHAR', -1);
define ('SQL_DECIMAL', 3);
define ('SQL_NUMERIC', 2);
define ('SQL_BIT', -7);
define ('SQL_TINYINT', -6);
define ('SQL_SMALLINT', 5);
define ('SQL_INTEGER', 4);
define ('SQL_BIGINT', -5);
define ('SQL_REAL', 7);
define ('SQL_FLOAT', 6);
define ('SQL_DOUBLE', 8);
define ('SQL_BINARY', -2);
define ('SQL_VARBINARY', -3);
define ('SQL_LONGVARBINARY', -4);
define ('SQL_DATE', 9);
define ('SQL_TIME', 10);
define ('SQL_TIMESTAMP', 11);
define ('SQL_TYPE_DATE', 91);
define ('SQL_TYPE_TIME', 92);
define ('SQL_TYPE_TIMESTAMP', 93);
define ('SQL_WCHAR', -8);
define ('SQL_WVARCHAR', -9);
define ('SQL_WLONGVARCHAR', -10);
define ('SQL_BEST_ROWID', 1);
define ('SQL_ROWVER', 2);
define ('SQL_SCOPE_CURROW', 0);
define ('SQL_SCOPE_TRANSACTION', 1);
define ('SQL_SCOPE_SESSION', 2);
define ('SQL_NO_NULLS', 0);
define ('SQL_NULLABLE', 1);
define ('SQL_INDEX_UNIQUE', 0);
define ('SQL_INDEX_ALL', 1);
define ('SQL_ENSURE', 1);
define ('SQL_QUICK', 0);
// End of odbc v.7.0.4-7ubuntu2
?>