Line
Link Here
|
0 |
-- a/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx |
0 |
++ b/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx 21:06:20.343032932 -0400 |
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) |
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, |