AppInfo.xml Configuration File

Iron Speed Designer uses an XML configuration file for various settings used when generating your application.  This configuration file is typically named:

..\<App Folder>\AppInfo.xml

The AppInfo.xml file is a standard .NET application file that contains a variety of settings that govern how Iron Speed Designer behaves.

The <appSettings> element holds a variety of key-value pairs for various settings.

Key

Description

SQLServerSPCompatibility

Instructs Iron Speed Designer to generate stored procedures for specific versions of Microsoft SQL Server.

Value

Description

2000

Generate Microsoft SQL Server 2000 stored procedures.

7

Generate Microsoft SQL Server 7 stored procedures.

Note: Iron Speed Designer Support for Microsoft SQL Server 7 was discontinued on June 30, 2006.

Examples:

<configuration>

     <appSettings>

          <add key="SQLServerSPCompatibility" value="7" />

     </appSettings>

</configuration>