@@ -4,25 +4,35 @@ PHP_MySQL_wrapper
44This class implements a generic MySQL database access wrapper.
55It can:
66* [ Connect to a given MySQL server] ( #connect-to-a-given-mysql-server )
7+ * [ Connection examples] ( #connection-examples )
8+ * [ Connection example multi host, db manipulation] ( #connection-example-multi-host-db-manipulation )
79* [ Set the connection character set encoding] ( #set-the-connection-character-set-encoding )
810* Execute arbitrary queries and return the results in arrays
9- * Retrieve the columns of a table
1011* Execute UPDATE or INSERT queries from parameters that define the tables, fields, field values and conditions
11- * Multiple INSERT / UPDATE
12- * Count the number of rows of a table that match a given condition
13- * Get the next value of an auto-incremented table field
14- * Delete table rows that match a given condition
15- * Export / Import table to/from CSV files
16- * Create table from CSV file
17- * Export query to SCV file
18- * Do str_replace in given table for defined columns
19- * Table operations
20- * Rename
21- * Copy
22- * Truncate
23- * Drop table
24- * Get database size
25- * Log queries / errors
12+ * Array to insert
13+ * Array to update
14+ * Multiple INSERT / UPDATE
15+ * [ Count the number of rows of a table that match a given condition] ( #count-rows )
16+ * [ Delete table rows that match a given condition] ( #delete-rows )
17+ * Operations with CSV files
18+ * [ Export table to CSV] ( #export-table-to-csv )
19+ * [ Export query to CSV] ( #export-query-to-csv )
20+ * [ Import CSV to Table] ( #import-csv-to-table )
21+ * [ Import and update CSV to Table] ( #import-and-update-csv-to-table )
22+ * [ Create table from CSV file] ( #create-table-from-csv-file )
23+ * Do str_replace in given database, table or defined columns in table
24+ * [ Basic table operations] ( #basic-table-operation )
25+ * [ Copy table (with data included)] ( #basic-table-operation )
26+ * [ Copy table structure] ( #basic-table-operation )
27+ * [ Rename table] ( #basic-table-operation )
28+ * [ Swap table names] ( #basic-table-operation )
29+ * [ Truncate table (empty)] ( #basic-table-operation )
30+ * [ Drop one table] ( #basic-table-operation )
31+ * [ Drop multiple tables] ( #basic-table-operation )
32+ * [ Get table columns] ( #get-table-columns )
33+ * [ Get database size] ( #get-database-size )
34+ * [ Get the next value of an auto-incremented table field] ( #next-autoincrement )
35+ * [ Log queries / errors] ( #loging-queries-and-errors )
2636* Errors backtrace
2737
2838### Connectivity settings
0 commit comments