Add docs for ->insert_id. Props scribu. fixes #13439

git-svn-id: http://svn.automattic.com/wordpress/trunk@14745 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-05-19 16:07:42 +00:00
parent ca5d99a7d7
commit e7f50f9bfe
1 changed files with 9 additions and 0 deletions

View File

@ -107,6 +107,15 @@ class wpdb {
*/
var $rows_affected = 0;
/**
* The ID generated for an AUTO_INCREMENT column by the previous query (usually INSERT).
*
* @since 0.71
* @access public
* @var int
*/
var $insert_id = 0;
/**
* Saved result of the last query made
*