Questions tagged «database»

4
使用JDatabase创建子查询的方法
在http://docs.joomla.org/Selecting_data_using_JDatabase上,没有使用JDatabase编写子查询的书面方法。 https://gist.github.com/gunjanpatel/8663333举例说明了一种实现此目的的方式(省略了一些位): $subQuery = $db->getQuery(true); $query = $db->getQuery(true); // Create the base subQuery select statement. $subQuery->select('*') ->from($db->quoteName('#__sub_table')) ->where($db->quoteName('subTest') . ' = ' . $db->quote('1')); // Create the base select statement. $query->select('*') ->from($db->quoteName('#__table')) ->where($db->quoteName('state') . ' = ' . $db->quote('1')) ->where($db->quoteName('subCheckIn') . ' IN (' . $subQuery->__toString() . ')') ->order($db->quoteName('ordering') . …

6
如何打印出Joomla查询?
假设您已经使用Joomla构建了一个查询。 // Get a db connection. $db = JFactory::getDbo(); // Create a new query object. $query = $db->getQuery(true); // Select all records from the user profile table where key begins with "custom.". // Order it by the ordering field. $query->select($db->quoteName(array('user_id', 'profile_key', 'profile_value', 'ordering'))); $query->from($db->quoteName('#__user_profiles')); $query->where($db->quoteName('profile_key') . ' LIKE '. $db->quote('\'custom.%\'')); …




1
将元关键字迁移到标签
在Joomla 3.6中,是否有一种简单的方法可以迁移或复制文章的现有元关键字,使其成为文章标签? 情况是:Joomla,直到几个版本之前,还没有标签系统。在此之前,我们改为使用meta关键字,“相关文章”之类的模块也使用meta关键字来标识相关文章。现在,相关文章模块的当前版本使用标签而不是meta关键字,这实质上意味着它无法处理任何较旧的文章。同样,使用标签代替元关键字会更美观/更正确。 因此,我想采用一种自动方式来处理几百篇文章,阅读现有的meta关键字并将其作为标签导入。 我看了一下数据库结构,看是否有一些SQL脚本可以做到这一点,但是标签系统使用关系字段,虽然我可能会编写脚本,但要花很多时间进行摆弄和测试。 我想会有更多人遇到这个问题,有人可能已经开发了插件或命令行脚本,但是我找不到任何有用的东西。
10 database  tags 

1
使用Joomla变量制作自定义HTML用户个人资料页
我想这会很复杂,但是我会尽力让您理解我想要实现的目标。我想要做的是制作一个自定义HTML页面,该页面将显示已登录我的Joomla网站的用户的信息。但是我希望它看起来好看,我想要一个背景图像,我想要为不同的Joomla变量包含CSS和不同的字体。我想要实现的示例: <p> Name : </p> <h1> Name of the user who has logged in </h1> <p> Email : </p> <h2> Email of the user who has logged in </h2> 这就是我所说的,将<h1>标签分配给用户名或分配<h2>给电子邮件等。 无论如何,有没有将HTML页面连接到Joomla数据库并从中检索数据并以这种方式显示它。
9 database  user 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.