Sign in
apache
/
zetacomponents
/
trunk
/
.
/
AuthenticationDatabaseTiein
/
docs
/
tutorial
/
load_openid_db_store_schema.php
blob: 915d0b685ae243874b0d9d48d6e7d6ab2dc28472 [
file
]
<?
php
require_once
'tutorial_autoload.php'
;
$db
=
ezcDbInstance
::
get
();
// replace if you get your database instance differently
$schema
=
ezcDbSchema
::
createFromFile
(
'array'
,
'openid_db_store_schema.dba'
);
$schema
->
writeToDb
(
$db
);
?>