From 871c880dba40968531b9a96c8c90106f7cfd530c Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 26 Feb 2004 15:57:35 +0000 Subject: [PATCH] not valid anymore --- phpgwapi/cron/clean_database.pl | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 phpgwapi/cron/clean_database.pl diff --git a/phpgwapi/cron/clean_database.pl b/phpgwapi/cron/clean_database.pl deleted file mode 100755 index f5ac6c7c5a..0000000000 --- a/phpgwapi/cron/clean_database.pl +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl - -use DBI; - -$db_host = 'localhost'; -$db_name = 'phpGroupWare'; -$db_user = 'phpgroupware'; -$db_pass = 'phpgr0upwar3'; - -$dbase = DBI->connect("DBI:mysql:$db_name;$db_host",$db_user,$db_pass); - - -$command = $dbase->do("delete from webcal_entry"); -$command = $dbase->do("delete from webcal_entry_user"); -$command = $dbase->do("delete from webcal_entry_groups"); -$command = $dbase->do("delete from webcal_entry_repeats"); - -$dbase->disconnect();