-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fetchAll(PDO::FETCH_COLUMN) gibi getlAll() #94
Comments
Merhabalar, |
Test tablosu
CREATE TABLE `attrs` (
`id` int UNSIGNED NOT NULL,
`title` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; select('title')->getAll() örneği:Kod: $db = new \Buki\Pdox($config);
$records = $db->table('attrs')
->select('title')
->getAll();
echo '<pre>';
var_dump($records);
echo '</pre>'; Çıktı: array(2) {
[0]=>
object(stdClass)#5 (1) {
["title"]=>
string(4) "Renk"
}
[1]=>
object(stdClass)#6 (1) {
["title"]=>
string(5) "Beden"
}
} select('title')->fetchAll(PDO::FETCH_COLUMN) örneği:Kod: $db = new \Buki\Pdox($config);
$records = $db->table('attrs')
->select('title')
->fetchAll(PDO::FETCH_COLUMN);
echo '<pre>';
var_dump($records);
echo '</pre>'; Çıktı: NULL PDO fetchAll(PDO::FETCH_COLUMN) örneği:Kod: $records = $pdo->prepare("SELECT title FROM attrs");
$records->execute();
$records = $records->fetchAll(PDO::FETCH_COLUMN);
echo '<pre>';
var_dump($records);
echo '</pre>'; Çıktı: array(2) {
[0]=>
string(4) "Renk"
[1]=>
string(5) "Beden"
} |
Selamlar, Şunu dener misininiz? $records = $db->table('attrs')
->select('title')
->fetchAll('array'); |
Merhaba. Gecikme için üzgünüm. Geçen zamanda yeni sürüm yayınlanmış, ona güncelleyerek denemeyi yaptım. PDOx sürümü: 1.6.0
Tam kod: $config = [
'driver' => 'mysql',
'host' => 'database',
'database' => 'myDockerDatabase',
'username' => 'docker',
'password' => 'docker',
'charset' => 'utf8',
'collation' => 'utf8_general_ci',
'prefix' => ''
];
$db = new \Buki\Pdox($config);
$records = $db->table('attrs')
->select('title')
->fetchAll('array');
echo '<pre>';
var_dump($records);
echo '</pre>'; |
Merhaba. Sadece tek sütundaki verileri dizi olarak alabilmek istiyorum. Bunu nasıl yapabilirim?
PDO'nun
...->fetchAll(PDO::FETCH_COLUMN)
fonksiyonu gibi sonuç döndürmesini istiyorum.Örnek olarak şu şekilde bir tablo olsun:
Ben
title
sütunundaki verileri şu şekilde istiyorum:Şu anda
...->select("title")->getAll()
kullandığımda "array of objects" döndürüyor.Eğer şu an mümkün değilse belki
...->getCol()
gibi bir fonksiyon eklenerek bu sağlanabilir.The text was updated successfully, but these errors were encountered: