コード例 #1
0
ファイル: CachedPlatform.php プロジェクト: nextras/dbal
 public function getPrimarySequenceName($table)
 {
     return $this->cache->load('sequence.' . $table, function () use($table) {
         return $this->platform->getPrimarySequenceName($table);
     });
 }
コード例 #2
0
ファイル: StorageReflection.php プロジェクト: nextras/orm
 public function getPrimarySequenceName()
 {
     return $this->platform->getPrimarySequenceName($this->storageName);
 }