Fix parameter name in SQL_SetCharset documentation (#1329)

This commit is contained in:
Kruzya 2020-08-03 14:22:30 +04:00 committed by GitHub
parent 9bbbf60268
commit bb25b03884
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -360,7 +360,7 @@ methodmap Database < Handle
// //
// Example: "utf8", "latin1" // Example: "utf8", "latin1"
// //
// @param characterset The character set string to change to. // @param charset The character set string to change to.
// @return True, if character set was changed, false otherwise. // @return True, if character set was changed, false otherwise.
public native bool SetCharset(const char[] charset); public native bool SetCharset(const char[] charset);
@ -590,7 +590,7 @@ native void SQL_GetDriverProduct(Handle driver, char[] product, int maxlength);
* Example: "utf8", "latin1" * Example: "utf8", "latin1"
* *
* @param database Database Handle. * @param database Database Handle.
* @param characterset The character set string to change to. * @param charset The character set string to change to.
* @return True, if character set was changed, false otherwise. * @return True, if character set was changed, false otherwise.
*/ */
native bool SQL_SetCharset(Handle database, const char[] charset); native bool SQL_SetCharset(Handle database, const char[] charset);