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

dbx_mysql.pl - github.com/techsneeze/dmarcts-report-parser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dda94e3b256681714ac52172fceabc44bbd5add6 (plain)
1
2
3
4
5
6
7
8
9
10
%dbx = (
	epoch_to_timestamp_fn => 'FROM_UNIXTIME',
	to_hex_string => sub {
		my ($bin) = @_;
		return "X'" . unpack("H*", $bin) . "'";
	},
	column_info_type_col => 'mysql_type_name',
);

1;