-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.xml
More file actions
70 lines (67 loc) · 2.51 KB
/
package.xml
File metadata and controls
70 lines (67 loc) · 2.51 KB
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
<package version="1.0" packagerversion="1.4.2">
<name>PDO_MYSQL</name>
<summary>MySQL driver for PDO</summary>
<description>This extension provides a MySQL driver for PDO.
</description>
<maintainers>
<maintainer>
<user>gschlossnagle</user>
<name>George Schlossnagle</name>
<email>george@omniti.com</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>iliaa</user>
<name>Ilia Alshanetsky</name>
<email>iliaa@php.net</email>
<role>lead</role>
</maintainer>
<maintainer>
<user>wez</user>
<name>Wez Furlong</name>
<email>wez@php.net</email>
<role>lead</role>
</maintainer>
</maintainers>
<release>
<version>1.0.2</version>
<date>2006-05-01</date>
<license>PHP</license>
<state>stable</state>
<notes>This PECL release corresponds to PHP 5.1.3.
Added PDO::ATTR_EMULATE_PREPARES which can be used to force use of emulated or
native prepares. This attribute should can be set on the database handle, and
will cause subsequent prepares to use emulation.
- Fixed bug #36572 (cannot use native prepared statements with internal
queries like "show master status") (Ilia)
- Repackage using package2.xml
- Fixed Bug #35480 and #35415, crash when using persistent connections.
- Improved error detection for OPTIMIZE queries
- Added PDO::MYSQL_ATTR_LOCAL_INFILE, PDO::MYSQL_ATTR_INIT_COMMAND,
PDO::MYSQL_ATTR_READ_DEFAULT_FILE, PDO::MYSQL_ATTR_READ_DEFAULT_GROUP
- Improved error reporting when using native prepared statements
- Fixed PECL Bug #5193: improved bounds checking when calling getColumnMeta()
- Fixed Bug #34630: improved (emulated) LOB support
- Fixed Bug #34623: crash when selecting longtext fields
- Fixed PECL Bug #5802; is_null flag was sticking
- Fixed PECL Bug #5645; added mysql client library version information to phpinfo() output.
Windows binaries can be found at http://pecl4win.php.net/ext.php/php_pdo_mysql.dll
</notes>
<deps>
<dep type="php" rel="ge" version="5.0.3"/>
<dep type="pkg" rel="ge" version="1.0.3" optional="no">pdo</dep>
</deps>
<filelist>
<file role="src" name="config.m4"/>
<file role="doc" name="CREDITS"/>
<file role="src" name="mysql_driver.c"/>
<file role="src" name="mysql_statement.c"/>
<file role="src" name="pdo_mysql.c"/>
<file role="src" name="php_pdo_mysql.h"/>
<file role="src" name="php_pdo_mysql_int.h"/>
<file role="src" name="php_pdo_mysql_sqlstate.h"/>
</filelist>
</release>
</package>