Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F1820455
PDOMySQLTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
853 B
Subscribers
None
PDOMySQLTest.php
View Options
<?php
namespace
Sabre\CardDAV\Backend
;
require_once
'Sabre/TestUtil.php'
;
class
PDOMySQLTest
extends
AbstractPDOTest
{
/**
* @return PDO
*/
public
function
getPDO
()
{
if
(!
SABRE_HASMYSQL
)
$this
->
markTestSkipped
(
'MySQL driver is not available, or not properly configured'
);
$pdo
=
\Sabre\TestUtil
::
getMySQLDB
();
if
(!
$pdo
)
$this
->
markTestSkipped
(
'Could not connect to MySQL database'
);
$pdo
->
query
(
"DROP TABLE IF EXISTS addressbooks, cards, addressbookchanges"
);
$queries
=
explode
(
';'
,
file_get_contents
(
__DIR__
.
'/../../../../examples/sql/mysql.addressbook.sql'
)
);
foreach
(
$queries
as
$query
)
{
$query
=
trim
(
$query
,
"
\r\n\t
"
);
if
(
$query
)
$pdo
->
exec
(
$query
);
}
return
$pdo
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Dec 22, 3:25 AM (5 d, 7 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
914074
Default Alt Text
PDOMySQLTest.php (853 B)
Attached To
rDAVCAL DokuWiki DAVCal PlugIn
Event Timeline
Log In to Comment