当前位置: 首页>>代码示例>>PHP>>正文


PHP SQLite3::__construct方法代码示例

本文整理汇总了PHP中SQLite3::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP SQLite3::__construct方法的具体用法?PHP SQLite3::__construct怎么用?PHP SQLite3::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SQLite3的用法示例。


在下文中一共展示了SQLite3::__construct方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($filename = false)
 {
     if (!$filename) {
         $filename = dirname(__FILE__) . '/palma.db';
     }
     trace("db file = {$filename}");
     parent::__construct($filename);
     // Wait up to 10000 ms when the database is locked.
     $this->busyTimeout(10000);
     // Create any missing tables.
     $this->exec(self::SQL_CREATE_TABLES);
 }
开发者ID:gertiksxx,项目名称:PalMA,代码行数:12,代码来源:DBConnector.class.php

示例2: array

 function __construct($dbPath)
 {
     parent::__construct($dbPath, SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE);
     // Preparing annotation detection
     $this->isDevMode = true;
     $this->config = Setup::createAnnotationMetadataConfiguration(array(__DIR__ . "/../../src"), $this->isDevMode);
     // Creating entity manager
     $this->conn = array('driver' => 'pdo_sqlite', 'path' => $dbPath);
     $this->entityManager = EntityManager::create($this->conn, $this->config);
     // Checking table
     $this->checkTableCreation();
 }
开发者ID:JVerstry,项目名称:Zend-2-Login-Access-Control-Demo,代码行数:12,代码来源:DemoDatabase.php

示例3: __construct

 public function __construct($create = false)
 {
     $flags = SQLITE3_OPEN_READWRITE;
     if ($create) {
         $flags |= SQLITE3_OPEN_CREATE;
     }
     parent::__construct(DB_FILE, $flags);
     $this->enableExceptions(true);
     // Activer les contraintes des foreign keys
     $this->exec('PRAGMA foreign_keys = ON;');
     $this->createFunction('transliterate_to_ascii', ['Garradin\\Utils', 'transliterateToAscii']);
     $this->createFunction('base64', 'base64_encode');
     $this->createFunction('rank', [$this, 'sql_rank']);
 }
开发者ID:kd2org,项目名称:garradin,代码行数:14,代码来源:DB.php

示例4:

 function __construct($string)
 {
     parent::__construct($string);
 }
开发者ID:jrgiant,项目名称:SHWebsite,代码行数:4,代码来源:dblib.php

示例5:

 function __construct($dbFilename, $flags = SQLITE3_OPEN_READWRITE)
 {
     parent::__construct($dbFilename, $flags);
 }
开发者ID:Arno0x,项目名称:TermGate,代码行数:4,代码来源:dbManager.php

示例6: __construct

 public function __construct($str_cn = '')
 {
     list($type, $path) = explode(':', $str_cn);
     $this->__par['filename'] = $path;
     parent::__construct($path);
 }
开发者ID:spinit,项目名称:osy,代码行数:6,代码来源:DboSqlite.php

示例7:

 function __construct($dbPath)
 {
     parent::__construct($dbPath, SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE);
 }
开发者ID:JVerstry,项目名称:Symfony-2-Login-Access-Control-Demo,代码行数:4,代码来源:DemoDatabase.php


注:本文中的SQLite3::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。