我如何访问 Vtiger 数据库对象?
How can i access the Vtiger Database object?
我正在编写一个 php 脚本来将一些数据导入我的自定义模块,基本上我会 运行 一个 cron 作业定期从另一个 table 复制一些数据来填充我的自定义模块字段。
谢谢。
使用PearDatabase.php class获取数据库访问和与数据库操作相关的函数。
示例:
<?php
include_once 'include/database/PearDatabase.php';
$db = PearDatabase::getInstance();
$result = $db->pquery("SHOW TABLES LIKE 'leads'", array());
echo $db->num_rows($result);
print_r($result);
echo "<br>Test Done <br>";
//Using $db object you can access other DB related methods defined in that class.
//Include the file in your module in any file where you want DB operation.
// But I would recommend, use inside your main module class or model controller class.
?>
将此 PHP 脚本放入您的根目录并 运行 使用您的浏览器直接此文件。所以你会得到一些想法,你可以在你的模块内部使用,因为所有模块都从 index.php 文件(根目录)加载。
我正在编写一个 php 脚本来将一些数据导入我的自定义模块,基本上我会 运行 一个 cron 作业定期从另一个 table 复制一些数据来填充我的自定义模块字段。
谢谢。
使用PearDatabase.php class获取数据库访问和与数据库操作相关的函数。
示例:
<?php
include_once 'include/database/PearDatabase.php';
$db = PearDatabase::getInstance();
$result = $db->pquery("SHOW TABLES LIKE 'leads'", array());
echo $db->num_rows($result);
print_r($result);
echo "<br>Test Done <br>";
//Using $db object you can access other DB related methods defined in that class.
//Include the file in your module in any file where you want DB operation.
// But I would recommend, use inside your main module class or model controller class.
?>
将此 PHP 脚本放入您的根目录并 运行 使用您的浏览器直接此文件。所以你会得到一些想法,你可以在你的模块内部使用,因为所有模块都从 index.php 文件(根目录)加载。