Example: Database (DBTNG)
Same name in other branches
- 3.x modules/dbtng_example/dbtng_example.module \dbtng_example
- 8.x-1.x dbtng_example/dbtng_example.module \dbtng_example
- 4.0.x modules/dbtng_example/dbtng_example.module \dbtng_example
Database examples, including DBTNG.
'DBTNG' means 'Database: The Next Generation.' Yes, Drupallers are nerds.
General documentation is available at database abstraction layer documentation and at Database API.
The several examples here demonstrate basic database usage.
In Drupal 6, the recommended method to save or update an entry in the database was drupal_write_record() or db_query().
In Drupal 7 and forward, the usage of db_query() for INSERT, UPDATE, or DELETE is deprecated, because it is database-dependent. Instead specific functions are provided to perform these operations: db_insert(), db_update(), and db_delete() do the job now. (Note that drupal_write_record() is also deprecated.)
db_insert() example:
// INSERT INTO {dbtng_example} (name, surname) VALUES('John, 'Doe')
db_insert('dbtng_example')->fields(array(
'name' => 'John',
'surname' => 'Doe',
))
->execute();
db_update() example:
// UPDATE {dbtng_example} SET name = 'Jane' WHERE name = 'John'
db_update('dbtng_example')->fields(array(
'name' => 'Jane',
))
->condition('name', 'John')
->execute();
db_delete() example:
// DELETE FROM {dbtng_example} WHERE name = 'Jane'
db_delete('dbtng_example')->condition('name', 'Jane')
->execute();
See Database Abstraction Layer
See also
Parent topics
File
-
dbtng_example/
dbtng_example.module, line 15
Functions
Title Sort descending | File name | Summary |
---|---|---|
dbtng_example_advanced_list | dbtng_example/ |
Render a filtered list of entries in the database. |
dbtng_example_convert_resultset_to_table_render_array | dbtng_example/ |
This function renders array for table 'dbtng_example' |
dbtng_example_entry_delete | dbtng_example/ |
Delete an entry from the database. |
dbtng_example_entry_insert | dbtng_example/ |
Save an entry in the database. |
dbtng_example_entry_load | dbtng_example/ |
Read from the database using a filter array. |
dbtng_example_entry_update | dbtng_example/ |
Update an entry in the database. |
dbtng_example_execute_group_by_select_query | dbtng_example/ |
The code below will result in the following query SELECT ex.pid AS pid, ex.uid AS uid, ex.name AS name, ex.surname AS surname, ex.age AS age FROM {dbtng_example} ex GROUP BY ex.age |
dbtng_example_form_add | dbtng_example/ |
Prepare a simple form to add an entry, with all the interesting fields. |
dbtng_example_form_add_submit | dbtng_example/ |
Submit handler for 'add entry' form. |
dbtng_example_form_update | dbtng_example/ |
Sample UI to update a record. |
dbtng_example_form_update_callback | dbtng_example/ |
AJAX callback handler for the pid select. |
dbtng_example_form_update_submit | dbtng_example/ |
Submit handler for 'update entry' form. |
dbtng_example_grouping_list | dbtng_example/ |
This function groups the result set by the specified field and render a list of entries in the database |
dbtng_example_help | dbtng_example/ |
Implements hook_help(). |
dbtng_example_install | dbtng_example/ |
Implements hook_install(). |
dbtng_example_list | dbtng_example/ |
Render a list of entries in the database. |
dbtng_example_menu | dbtng_example/ |
Implements hook_menu(). |
dbtng_example_render_resultset_as_table | dbtng_example/ |
This function renders a resultset as table |
dbtng_example_schema | dbtng_example/ |
Implements hook_schema(). |
dbtng_example_selective_list | dbtng_example/ |
Select only certain fields from the database |
Classes
Title Sort descending | File name | Summary |
---|---|---|
DBTNGExampleUnitTestCase | dbtng_example/ |
Default test case for the dbtng_example module. |