IfxProviderFactory public methods
IfxProviderFactory.CreateConnectionStringBuilder
IfxProviderFactory CreateConnectionStringBuilder(IfxProviderFactory)
Returns an instance of a DbConnectionStringBuilder that the application developers can use to create connection strings dynamically.
IfxProviderFactory.CreateConnection
IfxProviderFactory.CreateConnection(IfxParameter value)
Returns an instance of a DbConnection that the application developers can use to connect to a data store. The DbConnection class exposes a method CreateCommand() that returns a new DbCommand instance. The developers can use this instead of the DbProviderFactory.CreateCommand() method to create a command for that connection
IfxProviderFactory.CreateCommand
IfxProviderFactory.CreateCommand()
Developers can use to execute SQL statements and stored procedures. The DbCommand class exposes a method CreateParameter() that returns a new DbParameter instance. The developers can use this instead of the DbProviderFactory.CreateParameter() method to create parameters for that command.
IfxProviderFactory.CreateParameter
IfxProviderFactory.CreateParameter()
Returns an instance of a DbParameter that the application developers can use to pass values into and out of SQL statements and stored procedures.
IfxProviderFactory.CreateCommandBuilder
IfxProviderFactory.CreateCommandBuilder()
Returns an instance of a DbCommandBuilder that the application developers can use to create the UPDATE, INSERT and DELETE SQL statements for a DataAdapter automatically.
IfxProviderFactory.CreateDataAdapter
IfxProviderFactory.CreateDataAdapter()
Returns an instance of a DbDataAdapter that the application developers can use to fill or update a DataSet or DataTable.
IfxProviderFactory.CreateDataSourceEnumerator
IfxProviderFactory.CreateDataSourceEnumerator()
Returns an instance of a DbDataSourceEnumerator that the application developers can use to examine the data sources available through this DbProviderFactory instance.
IfxProviderFactory.CreatePermission (PermissionState)
IfxProviderFactory.CreatePermission (PermissionState)
Takes a value from the PermissionState enumeration and returns an instance of a CodeAccessPermission that you can use to ensure that callers have been granted appropriate permission for all the objects to which they require access.