-
Notifications
You must be signed in to change notification settings - Fork 7
/
mysql.php
883 lines (812 loc) · 28.9 KB
/
mysql.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
<?php
// Start of mysql v.1.0
/**
* (PHP 4, PHP 5)<br/>
* Open a connection to a MySQL Server
* @link http://php.net/manual/en/function.mysql-connect.php
* @param string $server [optional] <p>
* The MySQL server. It can also include a port number. e.g.
* "hostname:port" or a path to a local socket e.g. ":/path/to/socket" for
* the localhost.
* </p>
* <p>
* If the PHP directive
* mysql.default_host is undefined (default), then the default
* value is 'localhost:3306'. In SQL safe mode, this parameter is ignored
* and value 'localhost:3306' is always used.
* </p>
* @param string $username [optional] <p>
* The username. Default value is defined by mysql.default_user. In
* SQL safe mode, this parameter is ignored and the name of the user that
* owns the server process is used.
* </p>
* @param string $password [optional] <p>
* The password. Default value is defined by mysql.default_password. In
* SQL safe mode, this parameter is ignored and empty password is used.
* </p>
* @param bool $new_link [optional] <p>
* If a second call is made to <b>mysql_connect</b>
* with the same arguments, no new link will be established, but
* instead, the link identifier of the already opened link will be
* returned. The <i>new_link</i> parameter modifies this
* behavior and makes <b>mysql_connect</b> always open
* a new link, even if <b>mysql_connect</b> was called
* before with the same parameters.
* In SQL safe mode, this parameter is ignored.
* </p>
* @param int $client_flags [optional] <p>
* The <i>client_flags</i> parameter can be a combination
* of the following constants:
* 128 (enable LOAD DATA LOCAL handling),
* <b>MYSQL_CLIENT_SSL</b>,
* <b>MYSQL_CLIENT_COMPRESS</b>,
* <b>MYSQL_CLIENT_IGNORE_SPACE</b> or
* <b>MYSQL_CLIENT_INTERACTIVE</b>.
* Read the section about for further information.
* In SQL safe mode, this parameter is ignored.
* </p>
* @return resource a MySQL link identifier on success or <b>FALSE</b> on failure.
*/
function mysql_connect ($server = 'ini_get("mysql.default_host")', $username = 'ini_get("mysql.default_user")', $password = 'ini_get("mysql.default_password")', $new_link = false, $client_flags = 0) {}
/**
* (PHP 4, PHP 5)<br/>
* Open a persistent connection to a MySQL server
* @link http://php.net/manual/en/function.mysql-pconnect.php
* @param string $server [optional] <p>
* The MySQL server. It can also include a port number. e.g.
* "hostname:port" or a path to a local socket e.g. ":/path/to/socket" for
* the localhost.
* </p>
* <p>
* If the PHP directive
* mysql.default_host is undefined (default), then the default
* value is 'localhost:3306'
* </p>
* @param string $username [optional] <p>
* The username. Default value is the name of the user that owns the
* server process.
* </p>
* @param string $password [optional] <p>
* The password. Default value is an empty password.
* </p>
* @param int $client_flags [optional] <p>
* The <i>client_flags</i> parameter can be a combination
* of the following constants:
* 128 (enable LOAD DATA LOCAL handling),
* <b>MYSQL_CLIENT_SSL</b>,
* <b>MYSQL_CLIENT_COMPRESS</b>,
* <b>MYSQL_CLIENT_IGNORE_SPACE</b> or
* <b>MYSQL_CLIENT_INTERACTIVE</b>.
* </p>
* @return resource a MySQL persistent link identifier on success, or <b>FALSE</b> on
* failure.
*/
function mysql_pconnect ($server = 'ini_get("mysql.default_host")', $username = 'ini_get("mysql.default_user")', $password = 'ini_get("mysql.default_password")', $client_flags = 0) {}
/**
* (PHP 4, PHP 5)<br/>
* Close MySQL connection
* @link http://php.net/manual/en/function.mysql-close.php
* @param resource $link_identifier [optional]
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function mysql_close ($link_identifier = NULL) {}
/**
* (PHP 4, PHP 5)<br/>
* Select a MySQL database
* @link http://php.net/manual/en/function.mysql-select-db.php
* @param string $database_name <p>
* The name of the database that is to be selected.
* </p>
* @param resource $link_identifier [optional]
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function mysql_select_db ($database_name, $link_identifier = NULL) {}
/**
* (PHP 4, PHP 5)<br/>
* Send a MySQL query
* @link http://php.net/manual/en/function.mysql-query.php
* @param string $query <p>
* An SQL query
* </p>
* <p>
* The query string should not end with a semicolon.
* Data inside the query should be properly escaped.
* </p>
* @param resource $link_identifier [optional]
* @return mixed For SELECT, SHOW, DESCRIBE, EXPLAIN and other statements returning resultset,
* <b>mysql_query</b>
* returns a resource on success, or <b>FALSE</b> on
* error.
* </p>
* <p>
* For other type of SQL statements, INSERT, UPDATE, DELETE, DROP, etc,
* <b>mysql_query</b> returns <b>TRUE</b> on success
* or <b>FALSE</b> on error.
* </p>
* <p>
* The returned result resource should be passed to
* <b>mysql_fetch_array</b>, and other
* functions for dealing with result tables, to access the returned data.
* </p>
* <p>
* Use <b>mysql_num_rows</b> to find out how many rows
* were returned for a SELECT statement or
* <b>mysql_affected_rows</b> to find out how many
* rows were affected by a DELETE, INSERT, REPLACE, or UPDATE
* statement.
* </p>
* <p>
* <b>mysql_query</b> will also fail and return <b>FALSE</b>
* if the user does not have permission to access the table(s) referenced by
* the query.
*/
function mysql_query ($query, $link_identifier = NULL) {}
/**
* (PHP 4 >= 4.0.6, PHP 5)<br/>
* Send an SQL query to MySQL without fetching and buffering the result rows.
* @link http://php.net/manual/en/function.mysql-unbuffered-query.php
* @param string $query <p>
* The SQL query to execute.
* </p>
* <p>
* Data inside the query should be properly escaped.
* </p>
* @param resource $link_identifier [optional]
* @return resource For SELECT, SHOW, DESCRIBE or EXPLAIN statements,
* <b>mysql_unbuffered_query</b>
* returns a resource on success, or <b>FALSE</b> on
* error.
* </p>
* <p>
* For other type of SQL statements, UPDATE, DELETE, DROP, etc,
* <b>mysql_unbuffered_query</b> returns <b>TRUE</b> on success
* or <b>FALSE</b> on error.
*/
function mysql_unbuffered_query ($query, $link_identifier = NULL) {}
/**
* (PHP 4, PHP 5)<br/>
* Selects a database and executes a query on it
* @link http://php.net/manual/en/function.mysql-db-query.php
* @param string $database <p>
* The name of the database that will be selected.
* </p>
* @param string $query <p>
* The MySQL query.
* </p>
* <p>
* Data inside the query should be properly escaped.
* </p>
* @param resource $link_identifier [optional]
* @return resource a positive MySQL result resource to the query result,
* or <b>FALSE</b> on error. The function also returns <b>TRUE</b>/<b>FALSE</b> for
* INSERT/UPDATE/DELETE
* queries to indicate success/failure.
*/
function mysql_db_query ($database, $query, $link_identifier = NULL) {}
/**
* (PHP 4, PHP 5)<br/>
* List databases available on a MySQL server
* @link http://php.net/manual/en/function.mysql-list-dbs.php
* @param resource $link_identifier [optional]
* @return resource a result pointer resource on success, or <b>FALSE</b> on
* failure. Use the <b>mysql_tablename</b> function to traverse
* this result pointer, or any function for result tables, such as
* <b>mysql_fetch_array</b>.
*/
function mysql_list_dbs ($link_identifier = NULL) {}
/**
* (PHP 4, PHP 5)<br/>
* List tables in a MySQL database
* @link http://php.net/manual/en/function.mysql-list-tables.php
* @param string $database <p>
* The name of the database
* </p>
* @param resource $link_identifier [optional]
* @return resource A result pointer resource on success or <b>FALSE</b> on failure.
* </p>
* <p>
* Use the <b>mysql_tablename</b> function to
* traverse this result pointer, or any function for result tables,
* such as <b>mysql_fetch_array</b>.
*/
function mysql_list_tables ($database, $link_identifier = NULL) {}
/**
* (PHP 4, PHP 5)<br/>
* List MySQL table fields
* @link http://php.net/manual/en/function.mysql-list-fields.php
* @param string $database_name <p>
* The name of the database that's being queried.
* </p>
* @param string $table_name <p>
* The name of the table that's being queried.
* </p>
* @param resource $link_identifier [optional]
* @return resource A result pointer resource on success, or <b>FALSE</b> on
* failure.
* </p>
* <p>
* The returned result can be used with <b>mysql_field_flags</b>,
* <b>mysql_field_len</b>,
* <b>mysql_field_name</b> and
* <b>mysql_field_type</b>.
*/
function mysql_list_fields ($database_name, $table_name, $link_identifier = NULL) {}
/**
* (PHP 4 >= 4.3.0, PHP 5)<br/>
* List MySQL processes
* @link http://php.net/manual/en/function.mysql-list-processes.php
* @param resource $link_identifier [optional]
* @return resource A result pointer resource on success or <b>FALSE</b> on failure.
*/
function mysql_list_processes ($link_identifier = NULL) {}
/**
* (PHP 4, PHP 5)<br/>
* Returns the text of the error message from previous MySQL operation
* @link http://php.net/manual/en/function.mysql-error.php
* @param resource $link_identifier [optional]
* @return string the error text from the last MySQL function, or
* '' (empty string) if no error occurred.
*/
function mysql_error ($link_identifier = NULL) {}
/**
* (PHP 4, PHP 5)<br/>
* Returns the numerical value of the error message from previous MySQL operation
* @link http://php.net/manual/en/function.mysql-errno.php
* @param resource $link_identifier [optional]
* @return int the error number from the last MySQL function, or
* 0 (zero) if no error occurred.
*/
function mysql_errno ($link_identifier = NULL) {}
/**
* (PHP 4, PHP 5)<br/>
* Get number of affected rows in previous MySQL operation
* @link http://php.net/manual/en/function.mysql-affected-rows.php
* @param resource $link_identifier [optional]
* @return int the number of affected rows on success, and -1 if the last query
* failed.
* </p>
* <p>
* If the last query was a DELETE query with no WHERE clause, all
* of the records will have been deleted from the table but this
* function will return zero with MySQL versions prior to 4.1.2.
* </p>
* <p>
* When using UPDATE, MySQL will not update columns where the new value is the
* same as the old value. This creates the possibility that
* <b>mysql_affected_rows</b> may not actually equal the number
* of rows matched, only the number of rows that were literally affected by
* the query.
* </p>
* <p>
* The REPLACE statement first deletes the record with the same primary key
* and then inserts the new record. This function returns the number of
* deleted records plus the number of inserted records.
* </p>
* <p>
* In the case of "INSERT ... ON DUPLICATE KEY UPDATE" queries, the
* return value will be 1 if an insert was performed,
* or 2 for an update of an existing row.
*/
function mysql_affected_rows ($link_identifier = NULL) {}
/**
* (PHP 4, PHP 5)<br/>
* Get the ID generated in the last query
* @link http://php.net/manual/en/function.mysql-insert-id.php
* @param resource $link_identifier [optional]
* @return int The ID generated for an AUTO_INCREMENT column by the previous
* query on success, 0 if the previous
* query does not generate an AUTO_INCREMENT value, or <b>FALSE</b> if
* no MySQL connection was established.
*/
function mysql_insert_id ($link_identifier = NULL) {}
/**
* (PHP 4, PHP 5)<br/>
* Get result data
* @link http://php.net/manual/en/function.mysql-result.php
* @param resource $result
* @param int $row <p>
* The row number from the result that's being retrieved. Row numbers
* start at 0.
* </p>
* @param mixed $field [optional] <p>
* The name or offset of the field being retrieved.
* </p>
* <p>
* It can be the field's offset, the field's name, or the field's table
* dot field name (tablename.fieldname). If the column name has been
* aliased ('select foo as bar from...'), use the alias instead of the
* column name. If undefined, the first field is retrieved.
* </p>
* @return string The contents of one cell from a MySQL result set on success, or
* <b>FALSE</b> on failure.
*/
function mysql_result ($result, $row, $field = 0) {}
/**
* (PHP 4, PHP 5)<br/>
* Get number of rows in result
* @link http://php.net/manual/en/function.mysql-num-rows.php
* @param resource $result
* @return int The number of rows in a result set on success or <b>FALSE</b> on failure.
*/
function mysql_num_rows ($result) {}
/**
* (PHP 4, PHP 5)<br/>
* Get number of fields in result
* @link http://php.net/manual/en/function.mysql-num-fields.php
* @param resource $result
* @return int the number of fields in the result set resource on
* success or <b>FALSE</b> on failure.
*/
function mysql_num_fields ($result) {}
/**
* (PHP 4, PHP 5)<br/>
* Get a result row as an enumerated array
* @link http://php.net/manual/en/function.mysql-fetch-row.php
* @param resource $result
* @return array an numerical array of strings that corresponds to the fetched row, or
* <b>FALSE</b> if there are no more rows.
* </p>
* <p>
* <b>mysql_fetch_row</b> fetches one row of data from
* the result associated with the specified result identifier. The
* row is returned as an array. Each result column is stored in an
* array offset, starting at offset 0.
*/
function mysql_fetch_row ($result) {}
/**
* (PHP 4, PHP 5)<br/>
* Fetch a result row as an associative array, a numeric array, or both
* @link http://php.net/manual/en/function.mysql-fetch-array.php
* @param resource $result
* @param int $result_type [optional] <p>
* The type of array that is to be fetched. It's a constant and can
* take the following values: <b>MYSQL_ASSOC</b>,
* <b>MYSQL_NUM</b>, and
* <b>MYSQL_BOTH</b>.
* </p>
* @return array an array of strings that corresponds to the fetched row, or <b>FALSE</b>
* if there are no more rows. The type of returned array depends on
* how <i>result_type</i> is defined. By using
* <b>MYSQL_BOTH</b> (default), you'll get an array with both
* associative and number indices. Using <b>MYSQL_ASSOC</b>, you
* only get associative indices (as <b>mysql_fetch_assoc</b>
* works), using <b>MYSQL_NUM</b>, you only get number indices
* (as <b>mysql_fetch_row</b> works).
* </p>
* <p>
* If two or more columns of the result have the same field names,
* the last column will take precedence. To access the other column(s)
* of the same name, you must use the numeric index of the column or
* make an alias for the column. For aliased columns, you cannot
* access the contents with the original column name.
*/
function mysql_fetch_array ($result, $result_type = 'MYSQL_BOTH') {}
/**
* (PHP 4 >= 4.0.3, PHP 5)<br/>
* Fetch a result row as an associative array
* @link http://php.net/manual/en/function.mysql-fetch-assoc.php
* @param resource $result
* @return array an associative array of strings that corresponds to the fetched row, or
* <b>FALSE</b> if there are no more rows.
* </p>
* <p>
* If two or more columns of the result have the same field names,
* the last column will take precedence. To access the other
* column(s) of the same name, you either need to access the
* result with numeric indices by using
* <b>mysql_fetch_row</b> or add alias names.
* See the example at the <b>mysql_fetch_array</b>
* description about aliases.
*/
function mysql_fetch_assoc ($result) {}
/**
* (PHP 4, PHP 5)<br/>
* Fetch a result row as an object
* @link http://php.net/manual/en/function.mysql-fetch-object.php
* @param resource $result
* @param string $class_name [optional] <p>
* The name of the class to instantiate, set the properties of and return.
* If not specified, a <b>stdClass</b> object is returned.
* </p>
* @param array $params [optional] <p>
* An optional array of parameters to pass to the constructor
* for <i>class_name</i> objects.
* </p>
* @return object an object with string properties that correspond to the
* fetched row, or <b>FALSE</b> if there are no more rows.
*/
function mysql_fetch_object ($result, $class_name = null, array $params = null) {}
/**
* (PHP 4, PHP 5)<br/>
* Move internal result pointer
* @link http://php.net/manual/en/function.mysql-data-seek.php
* @param resource $result
* @param int $row_number <p>
* The desired row number of the new result pointer.
* </p>
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function mysql_data_seek ($result, $row_number) {}
/**
* (PHP 4, PHP 5)<br/>
* Get the length of each output in a result
* @link http://php.net/manual/en/function.mysql-fetch-lengths.php
* @param resource $result
* @return array An array of lengths on success or <b>FALSE</b> on failure.
*/
function mysql_fetch_lengths ($result) {}
/**
* (PHP 4, PHP 5)<br/>
* Get column information from a result and return as an object
* @link http://php.net/manual/en/function.mysql-fetch-field.php
* @param resource $result
* @param int $field_offset [optional] <p>
* The numerical field offset. If the field offset is not specified, the
* next field that was not yet retrieved by this function is retrieved.
* The <i>field_offset</i> starts at 0.
* </p>
* @return object an object containing field information. The properties
* of the object are:
* </p>
* <p>
* name - column name
* table - name of the table the column belongs to, which is the alias name if one is defined
* max_length - maximum length of the column
* not_null - 1 if the column cannot be <b>NULL</b>
* primary_key - 1 if the column is a primary key
* unique_key - 1 if the column is a unique key
* multiple_key - 1 if the column is a non-unique key
* numeric - 1 if the column is numeric
* blob - 1 if the column is a BLOB
* type - the type of the column
* unsigned - 1 if the column is unsigned
* zerofill - 1 if the column is zero-filled
*/
function mysql_fetch_field ($result, $field_offset = 0) {}
/**
* (PHP 4, PHP 5)<br/>
* Set result pointer to a specified field offset
* @link http://php.net/manual/en/function.mysql-field-seek.php
* @param resource $result
* @param int $field_offset
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function mysql_field_seek ($result, $field_offset) {}
/**
* (PHP 4, PHP 5)<br/>
* Free result memory
* @link http://php.net/manual/en/function.mysql-free-result.php
* @param resource $result
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
* </p>
* <p>
* If a non-resource is used for the <i>result</i>, an
* error of level E_WARNING will be emitted. It's worth noting that
* <b>mysql_query</b> only returns a resource
* for SELECT, SHOW, EXPLAIN, and DESCRIBE queries.
*/
function mysql_free_result ($result) {}
/**
* (PHP 4, PHP 5)<br/>
* Get the name of the specified field in a result
* @link http://php.net/manual/en/function.mysql-field-name.php
* @param resource $result
* @param int $field_offset
* @return string The name of the specified field index on success or <b>FALSE</b> on failure.
*/
function mysql_field_name ($result, $field_offset) {}
/**
* (PHP 4, PHP 5)<br/>
* Get name of the table the specified field is in
* @link http://php.net/manual/en/function.mysql-field-table.php
* @param resource $result
* @param int $field_offset
* @return string The name of the table on success.
*/
function mysql_field_table ($result, $field_offset) {}
/**
* (PHP 4, PHP 5)<br/>
* Returns the length of the specified field
* @link http://php.net/manual/en/function.mysql-field-len.php
* @param resource $result
* @param int $field_offset
* @return int The length of the specified field index on success or <b>FALSE</b> on failure.
*/
function mysql_field_len ($result, $field_offset) {}
/**
* (PHP 4, PHP 5)<br/>
* Get the type of the specified field in a result
* @link http://php.net/manual/en/function.mysql-field-type.php
* @param resource $result
* @param int $field_offset
* @return string The returned field type
* will be one of "int", "real",
* "string", "blob", and others as
* detailed in the MySQL
* documentation.
*/
function mysql_field_type ($result, $field_offset) {}
/**
* (PHP 4, PHP 5)<br/>
* Get the flags associated with the specified field in a result
* @link http://php.net/manual/en/function.mysql-field-flags.php
* @param resource $result
* @param int $field_offset
* @return string a string of flags associated with the result or <b>FALSE</b> on failure.
* </p>
* <p>
* The following flags are reported, if your version of MySQL
* is current enough to support them: "not_null",
* "primary_key", "unique_key",
* "multiple_key", "blob",
* "unsigned", "zerofill",
* "binary", "enum",
* "auto_increment" and "timestamp".
*/
function mysql_field_flags ($result, $field_offset) {}
/**
* (PHP 4 >= 4.0.3, PHP 5)<br/>
* Escapes a string for use in a mysql_query
* @link http://php.net/manual/en/function.mysql-escape-string.php
* @param string $unescaped_string <p>
* The string that is to be escaped.
* </p>
* @return string the escaped string.
*/
function mysql_escape_string ($unescaped_string) {}
/**
* (PHP 4 >= 4.3.0, PHP 5)<br/>
* Escapes special characters in a string for use in an SQL statement
* @link http://php.net/manual/en/function.mysql-real-escape-string.php
* @param string $unescaped_string <p>
* The string that is to be escaped.
* </p>
* @param resource $link_identifier [optional]
* @return string the escaped string, or <b>FALSE</b> on error.
*/
function mysql_real_escape_string ($unescaped_string, $link_identifier = NULL) {}
/**
* (PHP 4 >= 4.3.0, PHP 5)<br/>
* Get current system status
* @link http://php.net/manual/en/function.mysql-stat.php
* @param resource $link_identifier [optional]
* @return string a string with the status for uptime, threads, queries, open tables,
* flush tables and queries per second. For a complete list of other status
* variables, you have to use the SHOW STATUS SQL command.
* If <i>link_identifier</i> is invalid, <b>NULL</b> is returned.
*/
function mysql_stat ($link_identifier = NULL) {}
/**
* (PHP 4 >= 4.3.0, PHP 5)<br/>
* Return the current thread ID
* @link http://php.net/manual/en/function.mysql-thread-id.php
* @param resource $link_identifier [optional]
* @return int The thread ID on success or <b>FALSE</b> on failure.
*/
function mysql_thread_id ($link_identifier = NULL) {}
/**
* (PHP 4 >= 4.3.0, PHP 5)<br/>
* Returns the name of the character set
* @link http://php.net/manual/en/function.mysql-client-encoding.php
* @param resource $link_identifier [optional]
* @return string the default character set name for the current connection.
*/
function mysql_client_encoding ($link_identifier = NULL) {}
/**
* (PHP 4 >= 4.3.0, PHP 5)<br/>
* Ping a server connection or reconnect if there is no connection
* @link http://php.net/manual/en/function.mysql-ping.php
* @param resource $link_identifier [optional]
* @return bool <b>TRUE</b> if the connection to the server MySQL server is working,
* otherwise <b>FALSE</b>.
*/
function mysql_ping ($link_identifier = NULL) {}
/**
* (PHP 4 >= 4.0.5, PHP 5)<br/>
* Get MySQL client info
* @link http://php.net/manual/en/function.mysql-get-client-info.php
* @return string The MySQL client version.
*/
function mysql_get_client_info () {}
/**
* (PHP 4 >= 4.0.5, PHP 5)<br/>
* Get MySQL host info
* @link http://php.net/manual/en/function.mysql-get-host-info.php
* @param resource $link_identifier [optional]
* @return string a string describing the type of MySQL connection in use for the
* connection or <b>FALSE</b> on failure.
*/
function mysql_get_host_info ($link_identifier = NULL) {}
/**
* (PHP 4 >= 4.0.5, PHP 5)<br/>
* Get MySQL protocol info
* @link http://php.net/manual/en/function.mysql-get-proto-info.php
* @param resource $link_identifier [optional]
* @return int the MySQL protocol on success or <b>FALSE</b> on failure.
*/
function mysql_get_proto_info ($link_identifier = NULL) {}
/**
* (PHP 4 >= 4.0.5, PHP 5)<br/>
* Get MySQL server info
* @link http://php.net/manual/en/function.mysql-get-server-info.php
* @param resource $link_identifier [optional]
* @return string the MySQL server version on success or <b>FALSE</b> on failure.
*/
function mysql_get_server_info ($link_identifier = NULL) {}
/**
* (PHP 4 >= 4.3.0, PHP 5)<br/>
* Get information about the most recent query
* @link http://php.net/manual/en/function.mysql-info.php
* @param resource $link_identifier [optional]
* @return string information about the statement on success, or <b>FALSE</b> on
* failure. See the example below for which statements provide information,
* and what the returned value may look like. Statements that are not listed
* will return <b>FALSE</b>.
*/
function mysql_info ($link_identifier = NULL) {}
/**
* (PHP 5 >= 5.2.3)<br/>
* Sets the client character set
* @link http://php.net/manual/en/function.mysql-set-charset.php
* @param string $charset <p>
* A valid character set name.
* </p>
* @param resource $link_identifier [optional]
* @return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
function mysql_set_charset ($charset, $link_identifier = NULL) {}
/**
* @param $database_name
* @param $query
* @param $link_identifier [optional]
*/
function mysql ($database_name, $query, $link_identifier) {}
/**
* @param $result
* @param $field_index
*/
function mysql_fieldname ($result, $field_index) {}
/**
* @param $result
* @param $field_offset
*/
function mysql_fieldtable ($result, $field_offset) {}
/**
* @param $result
* @param $field_offset
*/
function mysql_fieldlen ($result, $field_offset) {}
/**
* @param $result
* @param $field_offset
*/
function mysql_fieldtype ($result, $field_offset) {}
/**
* @param $result
* @param $field_offset
*/
function mysql_fieldflags ($result, $field_offset) {}
/**
* @param $database_name
* @param $link_identifier [optional]
*/
function mysql_selectdb ($database_name, $link_identifier) {}
/**
* @param $result
*/
function mysql_freeresult ($result) {}
/**
* @param $result
*/
function mysql_numfields ($result) {}
/**
* @param $result
*/
function mysql_numrows ($result) {}
/**
* @param $link_identifier [optional]
*/
function mysql_listdbs ($link_identifier) {}
/**
* @param $database_name
* @param $link_identifier [optional]
*/
function mysql_listtables ($database_name, $link_identifier) {}
/**
* @param $database_name
* @param $table_name
* @param $link_identifier [optional]
*/
function mysql_listfields ($database_name, $table_name, $link_identifier) {}
/**
* (PHP 4, PHP 5)<br/>
* Retrieves database name from the call to <b>mysql_list_dbs</b>
* @link http://php.net/manual/en/function.mysql-db-name.php
* @param resource $result <p>
* The result pointer from a call to <b>mysql_list_dbs</b>.
* </p>
* @param int $row <p>
* The index into the result set.
* </p>
* @param mixed $field [optional] <p>
* The field name.
* </p>
* @return string the database name on success, and <b>FALSE</b> on failure. If <b>FALSE</b>
* is returned, use <b>mysql_error</b> to determine the nature
* of the error.
*/
function mysql_db_name ($result, $row, $field = NULL) {}
/**
* @param $result
* @param $row
* @param $field [optional]
*/
function mysql_dbname ($result, $row, $field) {}
/**
* (PHP 4, PHP 5)<br/>
* Get table name of field
* @link http://php.net/manual/en/function.mysql-tablename.php
* @param resource $result <p>
* A result pointer resource that's returned from
* <b>mysql_list_tables</b>.
* </p>
* @param int $i <p>
* The integer index (row/table number)
* </p>
* @return string The name of the table on success or <b>FALSE</b> on failure.
* </p>
* <p>
* Use the <b>mysql_tablename</b> function to
* traverse this result pointer, or any function for result tables,
* such as <b>mysql_fetch_array</b>.
*/
function mysql_tablename ($result, $i) {}
/**
* @param $result
* @param $row
* @param $field [optional]
*/
function mysql_table_name ($result, $row, $field) {}
/**
* Columns are returned into the array having the fieldname as the array
* index.
* @link http://php.net/manual/en/mysql.constants.php
*/
define ('MYSQL_ASSOC', 1);
/**
* Columns are returned into the array having a numerical index to the
* fields. This index starts with 0, the first field in the result.
* @link http://php.net/manual/en/mysql.constants.php
*/
define ('MYSQL_NUM', 2);
/**
* Columns are returned into the array having both a numerical index
* and the fieldname as the array index.
* @link http://php.net/manual/en/mysql.constants.php
*/
define ('MYSQL_BOTH', 3);
/**
* Use compression protocol
* @link http://php.net/manual/en/mysql.constants.php
*/
define ('MYSQL_CLIENT_COMPRESS', 32);
/**
* Use SSL encryption. This flag is only available with version 4.x
* of the MySQL client library or newer. Version 3.23.x is bundled both
* with PHP 4 and Windows binaries of PHP 5.
* @link http://php.net/manual/en/mysql.constants.php
*/
define ('MYSQL_CLIENT_SSL', 2048);
/**
* Allow interactive_timeout seconds (instead of wait_timeout) of
* inactivity before closing the connection.
* @link http://php.net/manual/en/mysql.constants.php
*/
define ('MYSQL_CLIENT_INTERACTIVE', 1024);
/**
* Allow space after function names
* @link http://php.net/manual/en/mysql.constants.php
*/
define ('MYSQL_CLIENT_IGNORE_SPACE', 256);
// End of mysql v.1.0
?>