@@ -99,8 +99,8 @@ SQLRETURN do_query(STMT *stmt, std::string query)
99
99
* and when no musltiple statements is allowed - we can't now parse query
100
100
* that well to detect multiple queries.
101
101
*/
102
- if (stmt->dbc ->ds . opt_PREFETCH > 0
103
- && !stmt->dbc ->ds . opt_MULTI_STATEMENTS
102
+ if (stmt->dbc ->ds -> opt_PREFETCH > 0
103
+ && !stmt->dbc ->ds -> opt_MULTI_STATEMENTS
104
104
&& stmt->stmt_options .cursor_type == SQL_CURSOR_FORWARD_ONLY
105
105
&& scrollable (stmt, query.c_str (), query.c_str () + query_length)
106
106
&& !ssps_used (stmt))
@@ -112,7 +112,7 @@ SQLRETURN do_query(STMT *stmt, std::string query)
112
112
stmt->scroller .reset ();
113
113
114
114
stmt->scroller .row_count = calc_prefetch_number (
115
- stmt->dbc ->ds . opt_PREFETCH ,
115
+ stmt->dbc ->ds -> opt_PREFETCH ,
116
116
stmt->ard ->array_size ,
117
117
stmt->stmt_options .max_rows );
118
118
@@ -664,7 +664,7 @@ SQLRETURN convert_c_type2str(STMT *stmt, SQLSMALLINT ctype, DESCREC *iprec,
664
664
case SQL_C_TYPE_DATE:
665
665
{
666
666
DATE_STRUCT *date= (DATE_STRUCT*) *res;
667
- if (stmt->dbc ->ds . opt_MIN_DATE_TO_ZERO && !date->year
667
+ if (stmt->dbc ->ds -> opt_MIN_DATE_TO_ZERO && !date->year
668
668
&& (date->month == date->day == 1 ))
669
669
{
670
670
*length = myodbc_snprintf (buff, buff_max, " 0000-00-00" );
@@ -697,7 +697,7 @@ SQLRETURN convert_c_type2str(STMT *stmt, SQLSMALLINT ctype, DESCREC *iprec,
697
697
{
698
698
TIMESTAMP_STRUCT *time = (TIMESTAMP_STRUCT*) *res;
699
699
700
- if (stmt->dbc ->ds . opt_MIN_DATE_TO_ZERO &&
700
+ if (stmt->dbc ->ds -> opt_MIN_DATE_TO_ZERO &&
701
701
!time ->year && (time ->month == time ->day == 1 ))
702
702
{
703
703
*length = myodbc_snprintf (buff, buff_max, " 0000-00-00 %02d:%02d:%02d" ,
@@ -1037,7 +1037,7 @@ SQLRETURN insert_param(STMT *stmt, MYSQL_BIND *bind, DESC* apd,
1037
1037
Not sure if fraction should be considered as an overflow.
1038
1038
In fact specs say about "time fields only"
1039
1039
*/
1040
- if (!stmt->dbc ->ds . opt_NO_DATE_OVERFLOW && TIME_FIELDS_NONZERO (ts))
1040
+ if (!stmt->dbc ->ds -> opt_NO_DATE_OVERFLOW && TIME_FIELDS_NONZERO (ts))
1041
1041
{
1042
1042
return stmt->set_error (" 22008" , " Date overflow" , 0 );
1043
1043
}
@@ -1227,7 +1227,7 @@ SQLRETURN insert_param(STMT *stmt, MYSQL_BIND *bind, DESC* apd,
1227
1227
size_t local_thousands_sep_length = thousands_sep.length ();
1228
1228
size_t local_decimal_point_length = decimal_point.length ();
1229
1229
1230
- if (!stmt->dbc ->ds . opt_NO_LOCALE )
1230
+ if (!stmt->dbc ->ds -> opt_NO_LOCALE )
1231
1231
{
1232
1232
/* force use of . as decimal point */
1233
1233
local_thousands_sep= " ," ;
@@ -2010,8 +2010,8 @@ SQLRETURN SQL_API SQLCancel(SQLHSTMT hstmt)
2010
2010
interfere with the existing one. Therefore, locking is not needed in
2011
2011
the following block.
2012
2012
*/
2013
- auto host = std::make_shared<HOST_INFO>((const char *)dbc->ds . opt_SERVER , dbc->ds . opt_PORT );
2014
- CONNECTION_PROXY* proxy = dbc->connection_handler ->connect (host, & dbc->ds );
2013
+ auto host = std::make_shared<HOST_INFO>((const char *)dbc->ds -> opt_SERVER , dbc->ds -> opt_PORT );
2014
+ CONNECTION_PROXY* proxy = dbc->connection_handler ->connect (host, dbc->ds );
2015
2015
2016
2016
/* * @todo need to preserve and use ssl params */
2017
2017
if (!proxy)
0 commit comments