Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетил 17131 программист и 1835 роботов. Сейчас ищут 1544 программиста ...
DB_common::nextQueryIsManip()
Вернуться к: DB
DB_common::nextQueryIsManip()
DB_common::nextQueryIsManip() – Informs the DB driver that the next query is a manipulation query
Synopsis
void nextQueryIsManip ( boolean $manip )
Informs the DB driver that the next query that is called will manipulate data within the database and will not return a result set, irrespective of the usual detection performed within DB.
Parameter
- boolean $manip
-
When TRUE, the next query will always be treated as not returning a result set. When FALSE, the normal behaviour will be used, which will result in DB attempting to automatically detect whether the query will return a result set or not.
Return value
void - nothing is returned
Note
This function can not be called statically.
Вернуться к: DB