|
2 | 2 | ########## |
3 | 3 | # |
4 | 4 | # File: mdb2mysql |
| 5 | +# Repo: https://github.com/UrsaDK/mdb2mysql |
5 | 6 | # |
6 | 7 | # 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> |
8 | 9 | # |
9 | 10 | # Description: Perl script to convert MS Access (mdb) files to an import |
10 | 11 | # schema suitable for MySQL. |
|
16 | 17 | # the terms of the GNU General Public License as published by the Free |
17 | 18 | # Software Foundation. You should have received a copy of the GNU |
18 | 19 | # 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> |
30 | 20 | # |
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 |
45 | 22 | # |
46 | 23 | ############################################################################# |
47 | 24 | use strict; |
48 | 25 | use Getopt::Std; |
49 | 26 |
|
50 | | -my $VERSION = "MDB2MySQL v1.1.0"; |
| 27 | +my $VERSION = "MDB2MySQL v1.1.1"; |
51 | 28 |
|
52 | 29 | ########## |
53 | 30 | # |
|
0 commit comments