package mytool;

=pod

=head1 NAME

mytool.pm - mytool.cgi用コンスタント設定ファイル

=head1 AUTHOR INFORMATION

 ;######################################################################
 ;#
 ;# mytool.pm: mytool.cgi用コンスタント設定ファイル
 ;#			
 ;#
 ;# Copyright (c) 2004 Masashi Hori <hori@japannet.co.jp>
 ;# JapanNet. All Rights Reserved.
 ;#
 ;#
 ;######################################################################

=cut

sub new{
	my $class = shift;
	my $self = {};
	bless $self,$class;
	$self->{css} = 'css/';
	$self->{js} = 'js/';
	return $self;
}
sub initset{
#	$hostname = "localhost" ;
#	$user = "root";
#	$password = "mysql123";
#	$charset = "euc-jp" ;
#	$Tablesin = "Tables in ";
#	$connectmsg01 = "Tableを選択して下さい";
#	$showdatabasemsg01 = "Databaseを選択して下さい";
#	$createtablemsg01 = "テーブル名を入力して下さい";

	return (	
	"localhost", 
	"root",
	"mysql0123",
	"euc-jp", 
	"Tables_in_",
	"Tableを選択して下さい",
	"Databaseを選択して下さい",
	"テーブル名を入力して下さい");
}
1;
