|
|
Spawned off of Issue 45
Implement a series of command-line utilities that implement the core
functionality of the FDO API.
The idea here is to make the application more friendly to batching/external
automation by providing the essential FDO APIs needed in the form of many
little programs.
The initial list of utilities include:
TaskRun.exe - Load an execute a given task
Usage: TaskRun.exe -file:bulkcopy.task [-createlog:true]
Mkdstore.exe - Create a new FDO data store
Usage: Mkdstore.exe -provider:OSGeo.SDF -properties:File=C:\Test\NewFile.sdf
Destroy.exe - Destroy a FDO data store
Usage: Destroy.exe -provider:OSGeo.MySQL
-connection:Username=test;Password=test;Service=localhost:3306
-properties:DataStore=test_data
MakeSdf.exe - Create an SDF file
Usage: MakeSdf.exe -path:C:\Test\NewFile.sdf [-schema:C:\Test\NewFile.schema]
DumpSchema.exe - Creates an XML dump of a given schema
Usage: DumpSchema.exe -file:C:\NewFile.schema -provider:OSGeo.SDF
-connection:File=C:\Test\NewFile.sdf -schema:Default
[-classes:TestClass[,TestClass2,TestClass3,...]]
ApplySchema.exe - Applies an XML feature schema to an FDO connection
Usage: ApplySchema.exe -file:C:\NewFile.schema -provider:OSGeo.SHP
-connection:DefaultFileLocation=C:\Test\
|