diff options
Diffstat (limited to 'Aufgabe7/dbinc.pl')
| -rw-r--r-- | Aufgabe7/dbinc.pl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Aufgabe7/dbinc.pl b/Aufgabe7/dbinc.pl new file mode 100644 index 0000000..33da66c --- /dev/null +++ b/Aufgabe7/dbinc.pl @@ -0,0 +1,28 @@ +#!/usr/bin/env perl +#=============================================================================== +# +# FILE: dbinc.pl +# +# USAGE: ./dbinc.pl +# +# DESCRIPTION: Config file for database parameter. +# +# OPTIONS: --- +# REQUIREMENTS: --- +# BUGS: --- +# NOTES: --- +# AUTHOR: Stefan Suhren (su), suhren.stefan@fh-swf.de +# ORGANIZATION: FH Südwestfalen, Iserlohn +# VERSION: 1.0 +# CREATED: 06.01.2016 13:56:31 +# REVISION: --- +#=============================================================================== + +use strict; +use warnings; +use utf8; + +dbhost => 'localhost', +dbdatabase => 'skript', +dbuser => 'root', +dbpasswd => '', |
