Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
mysql_stmt_sqlstate(3)	       MariaDB Connector/C	  mysql_stmt_sqlstate(3)

   Name
     mysql_stmt_sqlstate - Returns SQLSTATE error from previous statement opera-
     tion.

   Synopsis
	    #include <mysql.h>

	    const char * mysql_stmt_sqlstate(MYSQL_STMT * stmt);

   Description
     Returns  a  string containing the SQLSTATE error code for the most recently
     invoked prepared statement function that can succeed or fail.  ## Parameter
     *	stmt  -  a  statement  handle,	which  was   previously   allocated   by
     mysql_stmt_init(3).  ## Return value Returns a 5 digit error code.  `00000'
     means no error.  The values are specified by ANSI SQL and ODBC.

   Notes
     Please  note that not all client library error codes are mapped to SQLSTATE
     errors.  Errors which can't be mapped will returned as value HY000.

   See Also
     * mysql_stmt_errno(3)

     * mysql_stmt_error(3)

Version 3.4						  mysql_stmt_sqlstate(3)

Want to link to this manual page? Use this URL:
<
https://man.freebsd.org/cgi/man.cgi?query=mysql_stmt_sqlstate&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help