Chapter 12. Searching and Indexing Content, Page 304
Fri, 04/10/2009 - 5:59am — pawel.traczynski
Location on the page:
implementation of hook_install() for legacysearch.module
Chapter:
12. Searching and Indexing Content
Error:
db_query("INSERT INTO technote VALUES ...
Correction:
db_query("INSERT INTO {technote} VALUES ...
Description of the Error:
You have to include '{' and '}' brackets, so the database engine can add table prefix (if needed) to the table name.
