1#。任何朋友都可以按照 joomla 中的 sqlite 东西向我解释
$query->select('name')
->from('sqlite_master') // sqlite_master ??
->where('type = :type') // :type??
->bind(':type', 'table') // purpose of bind ??
->order('name');
2#。实际查询看起来像
SELECT name
FROM sqlite_master
WHERE type = :type
ORDER BY name
但它不工作。:-( 当我更改了 where 子句 WHERE type = 'table'
时,它将正常工作。