SQL查询vBulletin中的新线程
如何查询数据库(mysql)来创建线程? 我需要从非注册用户创建一个线程,如果没有,则从现在开始.. 只需使用主题“Test”、文本“test text”和任意昵称查询数据库即可 抱歉英语不好,谢谢!
How to make a query to the database(mysql) to create a thread?
I need to create a thread from a non-registered user, if not, then from the present ..
Simply query the database with the subject "Test", the text "test text" and any nickname
Sorry for bad english, thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有权访问 vBulletin 代码库,我会使用他们的数据管理器。否则,它会变得非常混乱,因为发布后还有很多其他数据需要更新。其核心是,您希望将数据插入到帖子表和线程表中。我建议查看这些表的结构并从那里开始。
If you have access to the vBulletin code-base, I'd use their datamanagers. Otherwise, it gets very messy as there is lots of other data to update after posting. At its very core, you'd want to insert data into the post table, and the thread table. I'd recommend looking at the structure of those tables and going from there.