MySQL
| MySQL funkcijos | Aprašymas |
|---|---|
| mysql_affected_rows | Gaunamas eilučių skaičius kuris buvo suaktyvintas per paskutinę MySQL operaciją. |
| mysql_client_encoding() | Grąžinamas koduotės pavadinimas. |
| mysql_close() | Atjungia MySQL prisijungimą |
| mysql_connect | Prisijungia prie MySQL serverio |
| mysql_create_db() | Sukuria MySQL duombazę |
| mysql_data_seek | Move internal result pointer |
| mysql_db_name | Get result data |
| mysql_errno() | Grąžinamas klaidos numeris iš prieš buvusio MySQL operacijos. |
| mysql_error() | Gražina klaidos pranešimą prieštai panaudotos mysql užklausos jei toks yra. |
| mysql_fetch_array() | Išskaidomos gautos duomenų eilutės į pavadinimų masyvus, numeruotus masyvus arba į abudu. |
| mysql_fetch_assoc() | Išskaidomas gautas rezultatas iš MySQL į masyvą sudarytą eilučių pavadinimais |
| mysql_fetch_field | Get column information from a result and return as an object |
| mysql_fetch_lengths | Get the length of each output in a result |
| mysql_fetch_object | Fetch a result row as an object |
| mysql_fetch_row | Get a result row as an enumerated array |
| mysql_field_flags | Get the flags associated with the specified field in a result |
| mysql_field_len | Returns the length of the specified field |
| mysql_field_name | Get the name of the specified field in a result |
| mysql_field_seek | Set result pointer to a specified field offset |
| mysql_field_table | Get name of the table the specified field is in |
| mysql_field_type | Get the type of the specified field in a result |
| mysql_free_result() | Išvaloma gauta rezultatų atmintis |
| mysql_get_client_info() | Gaunamas MySQL kliento informacija |
| mysql_get_host_info() | Gaunamas MySQL host'o informacija |
| mysql_get_proto_info() | Gaunamas MySQL protokolo informacija |
| mysql_get_server_info() | Gaunamas MySQL serverio informacija |
| mysql_info | Get information about the most recent query |
| mysql_insert_id | Gražina ID sugeneruotą paskutinės INSERT operacijos |
| mysql_list_dbs | Gražina visas duombazes MySQL serveryje |
| mysql_list_fields | List MySQL table fields |
| mysql_list_processes | List MySQL processes |
| mysql_list_tables | List tables in a MySQL database |
| mysql_num_fields | Get number of fields in result |
| mysql_num_rows | Get number of rows in result |
| mysql_pconnect | Open a persistent connection to a MySQL server |
| mysql_ping | Ping a server connection or reconnect if there is no connection |
| mysql_query | Siunčiama užklausa į MySQL serverį. |
| mysql_real_escape_string() | Sutvarkomi kintamieji MySQL užklausoje. |
| mysql_result | Get result data |
| mysql_select_db | Select a MySQL database |
| mysql_set_charset | Sets the client character set |
| mysql_stat | Get current system status |
| mysql_tablename | Get table name of field |
| mysql_thread_id | Return the current thread ID |
| mysql_unbuffered_query | Siųsti SQL užklausą į MySQL, be gražinamų rezultatų |
Discussion