Property | Type | Description | |
---|---|---|---|
Database | string | ||
Password | string | ||
Server | string | ||
User | string |
Method | Description | |
---|---|---|
BeginTransaction ( ) : ITransaction |
Begins the transaction. Returns a NEW ConnectionDescriptor that you should use for operations you wish to be part of the transaction. NOTE: You MUST call Commit or Rollback on the returned ITransaction when you are done.
|
|
ColumnAliasPrefix ( ) : string | ||
ColumnAliasSuffix ( ) : string | ||
CreateDataAccessLayer ( ) : IDaLayer | ||
CreateNewAdapter ( IDbCommand cmd ) : |
||
CreateNewConnection ( ) : |
||
FirebirdDescriptor ( |
This constructor reads all the appropriate values from our standard config file in the normal format.
|
|
FirebirdDescriptor ( string databasePath ) : System |
Constructor for talking to an embedded firebird database.
|
|
FirebirdDescriptor ( string server, string database, string user, string password ) : System |
Constructor for talking to a server-based firebird database.
|
|
MakeModulusClause ( string columnName ) : |
||
MakeSequenceValueQuery ( string sequenceName ) : string | ||
NeedAsForColumnAliases ( ) : bool | ||
NeedToAliasColumns ( ) : bool | ||
SetParametersOnCommand ( IDbCommand cmd, IEnumerable parameters ) : void | ||
SupportsTruncate ( ) : bool | ||
TableAliasPrefix ( ) : string | ||
TableAliasSuffix ( ) : string | ||
ToCleanString ( ) : string | ||
ToCompleteString ( ) : string | ||
UsePooling ( ) : bool |
public CreateNewAdapter ( IDbCommand cmd ) : |
||
cmd | IDbCommand | |
return |
public CreateNewConnection ( ) : |
||
return |
public FirebirdDescriptor ( |
||
config | Config to get params from. | |
component | string | Section of the config XML to look in for db params. |
decryptionDelegate | ConnectionInfoDecryptionDelegate | Delegate to call to decrypt password fields. /// May be null if passwords are in plain text. |
return | System |
public FirebirdDescriptor ( string databasePath ) : System | ||
databasePath | string | Path to the db file. |
return | System |
public FirebirdDescriptor ( string server, string database, string user, string password ) : System | ||
server | string | Server name or IP. May not be null. |
database | string | Database name on that server. May not be null. |
user | string | Database user name, may be null. |
password | string | Plain text password for the user. /// May be null. |
return | System |
public MakeModulusClause ( string columnName ) : |
||
columnName | string | |
return |
public MakeSequenceValueQuery ( string sequenceName ) : string | ||
sequenceName | string | |
return | string |
public SetParametersOnCommand ( IDbCommand cmd, IEnumerable parameters ) : void | ||
cmd | IDbCommand | |
parameters | IEnumerable | |
return | void |