Programming Language PHP

Namespace Latitude\QueryBuilder

Class EngineInterface

Total Examples 9

9 code examples of PHP Latitude\QueryBuilder\EngineInterface extracted from open source projects

Was this example useful?
0
                                                    public function sql(EngineInterface $engine): string
    {
        return $engine->exportParameter($this->sql);
    }
                                            
Was this example useful?
0
                                                    public function sql(EngineInterface $engine): string
    {
        return $engine->exportParameter(null);
    }
                                            
Was this example useful?
0
                                                    public function sql(EngineInterface $engine): string
    {
        return $engine->exportParameter($this->value);
    }
                                            
Was this example useful?
0
                                                    public function params(EngineInterface $engine): array
    {
        return $engine->flattenParams(...$this->statements);
    }
                                            
Was this example useful?
0
                                                    public function sql(EngineInterface $engine): string
    {
        return $engine->flattenSql($this->separator, ...$this->statements);
    }
                                            
Was this example useful?
0
                                                    public function params(EngineInterface $engine): array
    {
        return $engine->flattenParams(...$this->identifiers);
    }
                                            
Was this example useful?
0
                                                    public function sql(EngineInterface $engine): string
    {
        return $engine->flattenSql('.', ...$this->identifiers);
    }
                                            
Was this example useful?
0
                                                    public function sql(EngineInterface $engine): string
    {
        return $engine->escapeIdentifier($this->name);
    }
                                            
Was this example useful?
0
                                                    public function params(EngineInterface $engine): array
    {
        return $engine->flattenParams(...$this->replacements);
    }