We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec484e0 commit 23bb561Copy full SHA for 23bb561
1 file changed
lib/Data/ObjectDriver/Driver/DBD/MariaDB.pm
@@ -7,4 +7,16 @@ use base qw( Data::ObjectDriver::Driver::DBD::mysql );
7
8
sub fetch_id { $_[3]->{mariadb_insertid} || $_[3]->{insertid} }
9
10
+sub bind_param_attributes {
11
+ my ($dbd, $data_type) = @_;
12
+ if ($data_type) {
13
+ if ($data_type eq 'blob') {
14
+ return DBI::SQL_BINARY;
15
+ } elsif ($data_type eq 'binchar') {
16
17
+ }
18
19
+ return;
20
+}
21
+
22
1;
0 commit comments