Joomla 和 MySQL

2022-01-06 00:00:00 php mysql joomla

Joomla 上是否有关于在 PHP 中通过 MySQL 进行数据库查询的特定文档?

Is there specific documentation available on Joomla regarding making database queries via MySQL in PHP?

我真正想要的是:

  • Joomla 是否实现了自己的数据库包装器,如果没有,是否建议使用指定的配置参数创建一个.
  • Joomla 是否能够参数化其查询以防止 SQL 注入.

推荐答案

是的,Joomla 定义了自己的 OOP 来处理数据库.

Yes, Joomla has it's own OOP defined to deal with databases.

通常,你会处理这样的代码:

Usually, you will deal with code like this:

$db =& JFactory::getDBO();

$query = "SELECT * FROM #__example_table WHERE id = 999999;";
$db->setQuery($query);

可以在此处阅读更多信息:如何在脚本中使用数据库类

Can read more here: How to use the database classes in your script

相关文章