Rev 1945 | Details | Compare with Previous | Last modification | View Log | SVN | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1945 | runge | 1 | |
| 2 | function MySql_Connect(server, username, password) |
||
| 3 | { |
||
| 4 | return MySqlExport_Connect(server, username, password); |
||
| 5 | } |
||
| 6 | |||
| 7 | function MySql_Close(resource) |
||
| 8 | { |
||
| 9 | return MySqlExport_Close(resource); |
||
| 10 | } |
||
| 11 | |||
| 12 | function MySql_Query(resource, query) |
||
| 13 | { |
||
| 14 | return MySqlExport_Query(resource, query); |
||
| 15 | } |
||
| 16 | |||
| 17 | function MySql_SelectDb(resource, database) |
||
| 18 | { |
||
| 19 | return MySqlExport_SelectDb(resource, database); |
||
| 20 | } |
||
| 21 | |||
| 22 | function MySql_AffectedRows(resource) |
||
| 23 | { |
||
| 24 | return MySqlExport_AffectedRows(resource); |
||
| 25 | } |
||
| 1947 | runge | 26 | |
| 27 | function MySql_InsertId(resource) |
||
| 28 | { |
||
| 29 | return MySqlExport_InsertId(resource); |
||
| 30 | } |
||
| 31 |