Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/techsneeze/dmarcts-report-parser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduardo M KALINOWSKI <eduardo@kalinowski.com.br>2022-06-05 16:29:33 +0300
committerEduardo M KALINOWSKI <eduardo@kalinowski.com.br>2022-06-06 14:35:27 +0300
commit15bd6e7c609ef069c61881097003338ab8322296 (patch)
treef1d80022fa553a8ebe9fafa51ba06a54f917a681 /dbx_mysql.pl
parentb25d0ed3a3ac7b1465153e60de8f371e35dc977e (diff)
Use DBI function to get column types
Unfortunately getting the type in a useful way for comparing later requires a database-specific column.
Diffstat (limited to 'dbx_mysql.pl')
-rw-r--r--dbx_mysql.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/dbx_mysql.pl b/dbx_mysql.pl
index 3c03bc6..dda94e3 100644
--- a/dbx_mysql.pl
+++ b/dbx_mysql.pl
@@ -4,6 +4,7 @@
my ($bin) = @_;
return "X'" . unpack("H*", $bin) . "'";
},
+ column_info_type_col => 'mysql_type_name',
);
1;