Lines Matching refs:bConvert

961 	sal_Bool bConvert = sal_False;  in supportsConvert()  local
965 bConvert = (nValue & SQL_CVT_BIT) == SQL_CVT_BIT; in supportsConvert()
968 bConvert = (nValue & SQL_CVT_TINYINT) == SQL_CVT_TINYINT; in supportsConvert()
971 bConvert = (nValue & SQL_CVT_SMALLINT) == SQL_CVT_SMALLINT; in supportsConvert()
974 bConvert = (nValue & SQL_CVT_INTEGER) == SQL_CVT_INTEGER; in supportsConvert()
977 bConvert = (nValue & SQL_CVT_BIGINT) == SQL_CVT_BIGINT; in supportsConvert()
980 bConvert = (nValue & SQL_CVT_FLOAT) == SQL_CVT_FLOAT; in supportsConvert()
983 bConvert = (nValue & SQL_CVT_REAL) == SQL_CVT_REAL; in supportsConvert()
986 bConvert = (nValue & SQL_CVT_DOUBLE) == SQL_CVT_DOUBLE; in supportsConvert()
989 bConvert = (nValue & SQL_CVT_NUMERIC) == SQL_CVT_NUMERIC; in supportsConvert()
992 bConvert = (nValue & SQL_CVT_DECIMAL) == SQL_CVT_DECIMAL; in supportsConvert()
995 bConvert = (nValue & SQL_CVT_CHAR) == SQL_CVT_CHAR; in supportsConvert()
998 bConvert = (nValue & SQL_CVT_VARCHAR) == SQL_CVT_VARCHAR; in supportsConvert()
1002 bConvert = (nValue & SQL_CVT_LONGVARCHAR) == SQL_CVT_LONGVARCHAR; in supportsConvert()
1005 bConvert = (nValue & SQL_CVT_DATE) == SQL_CVT_DATE; in supportsConvert()
1008 bConvert = (nValue & SQL_CVT_TIME) == SQL_CVT_TIME; in supportsConvert()
1011 bConvert = (nValue & SQL_CVT_TIMESTAMP) == SQL_CVT_TIMESTAMP; in supportsConvert()
1014 bConvert = (nValue & SQL_CVT_BINARY) == SQL_CVT_BINARY; in supportsConvert()
1017 bConvert = (nValue & SQL_CVT_VARBINARY) == SQL_CVT_VARBINARY; in supportsConvert()
1021 bConvert = (nValue & SQL_CVT_LONGVARBINARY) == SQL_CVT_LONGVARBINARY; in supportsConvert()
1025 return bConvert; in supportsConvert()