It is used in conjunction with a DBConnection object to establish a physical connection to a database.
Public Member Functions | |
| HRESULT | Info ([out, retval] IDSSObjectInfo ppInfo) |
| Get the standard object information: name, description, and so on. | |
| HRESULT | LoginName ([in] BSTR LoginName) |
| Get the database login user name. | |
| HRESULT | LoginName ([out, retval] BSTR *pLoginName) |
| Get the database login user name. | |
| HRESULT | Password ([in] BSTR Password) |
| Set the database login password. | |
| HRESULT | Password ([out, retval] BSTR *pPassword) |
| Get the database login password. | |
| HRESULT | Populate ([in] IDSSDBLogin *pOriginal) |
| Assign properties on this object from another DBLogin object. | |
|
|
Get the standard object information: name, description, and so on. Info is an object property. It returns the usual IDSSObjectInfo interface on this object. This interface is used to access things like the name and security permissions on the object.
|
|
|
Get the database login user name. LoginName is a text property. We use this name to establish a connection to a database.
|
|
|
Get the database login user name. LoginName is a text property. We use this name to establish a connection to a database.
|
|
|
Set the database login password. Password is a text property. It is the string that will be given to the RDBMS as the password when attempting to establish a connection to the database.
|
|
|
Get the database login password. Password is a text property. It is the string that will be given to the RDBMS as the password when attempting to establish a connection to the database.
|
|
|
Assign properties on this object from another DBLogin object. Populate is a method. This method assigns the properties inside this object from a given DBLogin object.
|