First public contribution.
1 # Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
3 # This component and the accompanying materials are made available
4 # under the terms of "Eclipse Public License v1.0"
5 # which accompanies this distribution, and is available
6 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 # Initial Contributors:
9 # Nokia Corporation - initial contribution.
18 $FilePath = "< add_simple_contacts.sql";
19 $FilePath2 = "> add_simple_contacts_dbms.sql";
20 open(SRC, $FilePath) or print STDERR "Cannot open $FilePath\n" and exit 1;
21 create(DEST, $FilePath2) or print STDERR "Cannot open $FilePath2\n" and exit 1;
26 if($Line =~ /^'\d\d\d\d-\d{1,2}-\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}',/)
29 print DEST "#07/06/2006#,\n";
36 @pair = split(/x/, $Line);
38 print DEST @pair[1]."\n";
49 print "changed lines count: $cnt\n";