Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 692422 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-3 / +9 lines)
Line  Link Here
0
-- a/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx
0
++ b/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx
Lines 39-49 Link Here
39
using ::com::sun::star::uno::RuntimeException;
39
using ::com::sun::star::uno::RuntimeException;
40
using ::com::sun::star::uno::Type;
40
using ::com::sun::star::uno::Type;
41
41
42
#if defined MYSQL_VERSION_ID && (MYSQL_VERSION_ID >= 80000) && !defined MARIADB_BASE_VERSION
43
using my_bool = bool;
44
#else
45
using my_bool = char;
46
#endif
47
42
struct BindMetaData
48
struct BindMetaData
43
{
49
{
44
    char is_null = 0;
50
    my_bool is_null = 0;
45
    unsigned long length = 0;
51
    unsigned long length = 0;
46
    char error = 0;
52
    my_bool error = 0;
47
};
53
};
48
54
49
typedef ::cppu::ImplHelper5<css::sdbc::XPreparedStatement, css::sdbc::XParameters,
55
typedef ::cppu::ImplHelper5<css::sdbc::XPreparedStatement, css::sdbc::XParameters,

Return to bug 692422