Skip to content

Commit 3598953

Browse files
author
Dmytro Konstantinov
committed
Bumped Version number
1 parent facd50c commit 3598953

File tree

1 file changed

+4
-27
lines changed

1 file changed

+4
-27
lines changed

mdb2mysql.pl

Lines changed: 4 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
##########
33
#
44
# File: mdb2mysql
5+
# Repo: https://github.com/UrsaDK/mdb2mysql
56
#
67
# Created By: Bill Lewis <bill@enobis.com>
7-
# Updated By: Dmytro Konstantinov <umka.dk@icloud.com>
8+
# Updated By: Dmytro Konstantinov <ursa.dk@icloud.com>
89
#
910
# Description: Perl script to convert MS Access (mdb) files to an import
1011
# schema suitable for MySQL.
@@ -16,38 +17,14 @@
1617
# the terms of the GNU General Public License as published by the Free
1718
# Software Foundation. You should have received a copy of the GNU
1819
# General Public License along with this software; if not, visit:
19-
# http://www.gnu.org/copyleft/gpl.html
20-
#
21-
# Revision History:
22-
#
23-
# v1.1.0 - Dec 08, 2005 - Dmytro Konstantinov <umka.dk@icloud.com>
24-
#
25-
# o Added ability to specify character set for the incoming data in
26-
# MySQL. This allows for the import of multilingual data from
27-
# Access databases.
28-
#
29-
# v1.0.1 - Dec 08, 2005 - Dmytro Konstantinov <umka.dk@icloud.com>
3020
#
31-
# o All table and column names are now quoted. Thus, fixing a
32-
# problem when dealing with tables or column names that contain
33-
# spaces as part of their name.
34-
#
35-
# o Illegal characters are now stripped out from table/column names
36-
# by default rather then being replaced by an underscore. This is
37-
# done to encourage the use of clean table/column names.
38-
#
39-
# o To avoid errors when trying to move NULL value from Access to
40-
# MySQL, all columns within MySQL are now allowed to have NULL
41-
# values. Also, since MDBTools do not export a default value for
42-
# a column, it is now left to be set by MySQL.
43-
#
44-
# v1.0.0 - First release (Oct 14, 2004) Bill Lewis <bill@enobis.com>
21+
# http://www.gnu.org/copyleft/gpl.html
4522
#
4623
#############################################################################
4724
use strict;
4825
use Getopt::Std;
4926

50-
my $VERSION = "MDB2MySQL v1.1.0";
27+
my $VERSION = "MDB2MySQL v1.1.1";
5128

5229
##########
5330
#

0 commit comments

Comments
 (0)