What's the Option=N in the MySQL ODBC connection string?

女生的网名这么多〃 提交于 2019-11-30 11:51:02
scatman

The Option= value is the sum of the numeric values for various flags that specify how Connector/ODBC should work. Its default value is 0.

From an older version of the Connector/ODBC documentation at web.archive.org:

Option=3; corresponded to FLAG_FIELD_LENGTH (1) + FLAG_FOUND_ROWS (2)

Option=4; was FLAG_DEBUG

According to the current list of Connector/ODBC options here ...

Table 5.2 Connector/ODBC Option Parameters

... both FLAG_FIELD_LENGTH (1) and FLAG_DEBUG (4) have been removed.

MySQL also recommends using the parameter names instead of (the sum of) their numeric values, not only for clarity, but because not all options have numeric values. So, instead of

Option=2;

we should use

FOUND_ROWS=1;

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!