;==============================================================================
;	$Revision: 1.3 $
;
;	This is an example data import file for Soccer ScoreSheet using the
;	comma delimited (or SDF) format. Field values are separated by a
;	comma, and strings enclosed in quotation marks (the latter is however
;	optional).
;
;	This SDF example is identical in data content to the FIX.TXT format
;	provided.
;
;	Notes:
;	1) Strings may NOT contain any comma's OR quotation marks.
;	2) Field lengths are NOT required for the SDF format.
;	3) Maximum record (line) width is 80 characters.
;
;	SOCCER.INI settings for this example:
;
;		[Import]
;		Method=1
;		Order=ABCDEF
;
;	Note that the 'Order=' parameter above can optionally include spaces
;	or other values. For the SDF format such characters are completely
;	ignored - only the order of the values given is important.
;
;	Field descriptions:
;		The fields are described below in the order in which they appear
;		in the data below, left to right. This order can be changed around
;		by re-configuring the 'Order' parameter above - for example
;		changing to 'CEABDF' would infer the home team name would be
;		followed by the away team name and so on.
;
;		1) Coupon number - if not blank then fixture is assigned as being
;			a coupon entry
;		2) Match status:
;				0 - not yet played
;				1 - League match
;				2 - Cup #1
;				3 - Cup #2
;				4 - Cup #3
;				5 - VOID
;		3) Home team name
;		4) Home team score
;		5) Away team name
;		6) Away team score
;==============================================================================
1,1,"Everton",1,"Liverpool",1
2,2,"Charlton",1,"Athletic",0
0,3,"Manchester Utd",2,"Manchester City",2
3,5,"Southampton",3,"Wimbledon",3

