Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

2. Database Generation Mode

Choose this mode by specifing specifying "/DatabaseGen" as the first argument. To use this mode you must specify SQL connection string in the config file.

...

3. Data Export and Database Generation Mode

Choose this mode by specifing specifying "/DataExportAndDatabaseGen" as the first argument. Use Salesforce and SQL Server connection String name and ensure your connection strings have been added to the config file

...

4. Web Application Generation

Choose this mode by specifing specifying "/WebAppGen" as an argumentthe first argument.

There are two ways to use this mode:

...

5. Database Generation and Web Application Generation

Choose this mode by specifying "/DataBaseGenAndWebAppGen" as the first argument.

There are three ways to use this mode:

  1. FuseIT.SDDMS /DataBaseGenAndWebAppGen
    This uses the default connection strings named, "SalesforceConnectionString" and "SqlAdminConnectionString", in the config file.
    If "useDataCache" is set to true in config file, it will use the dataCache file, else it will use the default connection string named, "SalesforceConnectionString", in config file to get the schema info. 
    e.g execute this command line (note spaces) - FuseIT.SDDMS /DataBaseGenAndWebAppGen
  2. FuseIT.SDDMS /DataBaseGenAndWebAppGen /scs:YourSalesforceConnectionStringName /sqlcs:YourSqlConnectionStringName "path"
    This uses your custom connection strings with the names in the config file.
    e.g execute this command line (note spaces) - FuseIT.SDDMS /DataBaseGenAndWebAppGen /scs:YourSalesforceConnectionStringName /sqlcs:YourSqlConnectionStringName "path"
    where /scs is the required Salesforce connection string prefix,
    /sqlcs is the required SQL Server connection string prefix and
    path is the file directory from where the data export files are saved e.g. c:/Myplace
  3. FuseIT.SDDMS /DataBaseGenAndWebAppGen /scs:useDataCache /sqlcs:YourSqlConnectionStringName "path"
    If you want to use the dataCache stored on the file system (stored while DataExport) write "useDataCache" in place of YourSalesforceConnectionStringName.
    e.g execute this command line (note spaces) - FuseIT.SDDMS /DatabaseGen /scs:useDataCache /sqlcs:YourSqlConnectionStringName "path"

 

6. Complete Application Generation

...