我已经构建了一个在客户端运行的应用程序(JavaScript和HTML),它需要访问和更新服务器上的数据。它有一个由5个表组成的模式。我已经在JSON中确切地定义了它们应该是什么样子。我希望这些可以作为从Drupal模块提供的JSON服务提供。我知道如何使用drupal_json_output来提供结果。我只是找不到一种简单的方法来确保为它们创建数据库表,然后添加和删除它的项目。我想保持Drupal与底层数据库的独立性。我不需要任何搜索功能,表单功能等。我只想使用Drupal的数据库抽象。
目前我在安装文件中尝试了以下内容:
/**
* Implements hook_schema
*/
function rcsarooms_schema(){
$schema = array();
$schema['rcsarooms'] = array(
'description' => 'Stores the structured information about the rooms and staircases.',
'fields' => array(
'ID' => array(
'type' => 'varchar',
'length' => 10,
'not null' => TRUE,
'description' => 'Primary Key: used in the URLs to identify the entity.'
),'Name' => array(
'type' => 'varchar',
'length' => 200,
'not null' => TRUE,
'description' => 'The name used for links in the navigation menues.'
),'ParentID' => array(
'type' => 'varchar',
'length' => 10,
'not null' => TRUE,
'description' => 'The ID of the parent element or "Root" if this is a root element'
),'Type' => array(
'type' => 'varchar',
'length' => 15,
'not null' => TRUE,
'description' => 'page, staircase, house, room or special'
),'BathroomSharing' => array(
'type' => 'int',
'description' => 'The number of people the bathroom is shared with (0 for unknown)'
),'RentBand' => array(
'type' => 'int',
'description' => 'The ID of the rent band the room is in.'
),'Floor' => array(
'type' => 'int',
'description' => 'The floor number (0 is courtyard level).'
)
),
'primary key' => array('ID')
);
return $schema;
}
以下在我的模块文件中:
/**
* Implements hook_menu
*/
function rcsarooms_menu(){
$items['rcsarooms'] = array(
'page callback' => 'rcsarooms_callback',
'access callback' => TRUE,
'type' => MENU_CALLBACK
);
return $items;
}
function rcsarooms_callback(){
drupal_json_output(db_query("SELECT * FROM {rcsarooms}"));
drupal_exit();
return;
}
当我尝试导航到rcsarooms时出现以下错误: PDOException:SQLSTATE [42S02]:找不到基表或视图:1146表'db.rcsarooms'不存在:SELECT * FROM {rcsarooms}; rcsarooms_callback()
中的Array()答案 0 :(得分:2)
您可能正在寻找安装模块时Drupal将用于创建自定义表格的hook_schema()
。它位于mymodule.install
文件中。
Schema API会告诉您需要了解的有关数据类型等的所有信息。
要在数据库中添加/删除项目,请使用db_insert()
,db_update()
和db_merge()
函数