Fix parameter name in SQL_SetCharset documentation (#1329)

This commit is contained in:
Kruzya
2020-08-03 11:22:30 +01:00
committed by GitHub
parent 9bbbf60268
commit bb25b03884
+2 -2
View File
@@ -360,7 +360,7 @@ methodmap Database < Handle
//
// 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.
public native bool SetCharset(const char[] charset);
@@ -590,7 +590,7 @@ native void SQL_GetDriverProduct(Handle driver, char[] product, int maxlength);
* Example: "utf8", "latin1"
*
* @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.
*/
native bool SQL_SetCharset(Handle database, const char[] charset);