Use of deprecated parts of the MySQL C API
Closed this issue · 4 comments
dveeden commented
https://dev.mysql.com/doc/relnotes/mysql/8.2/en/news-8-2-0.html#mysqld-8-2-0-capi
mysql_ssl_set()
- #373mysql_stmt_bind_param()
dveeden commented
This is not fully possible right now due to this bug: https://bugs.mysql.com/bug.php?id=112893
chenrui333 commented
@dveeden is this change in 5.004 rather than 5.005?
relates to:
dveeden commented
@chenrui333 There were multiple parts of the MySQL C API that have been removed and/or deprecated. These were fixed in multiple versions.
In 5.005:
- 21e9ef2 for
mysql_stmt_bind_param()
In 5.004:
- a5b8b36 for
mysql_reload()
andmysql_list_fields()
In 5.002:
- 5e9fd53 for
mysql_ssl_set()
Hope this helps?
chenrui333 commented
In 5.005:
- 21e9ef2 for
mysql_stmt_bind_param()
I was mostly curious about that commit, as it did not show the tag as the other two, but thanks for confirming it. Appreciate it.