Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
Holds information needed to upgrade a database using the DBTools library.
typedef struct an_upgrade_db { unsigned short version; const char * connectparms; MSG_CALLBACK errorrtn; MSG_CALLBACK msgrtn; MSG_CALLBACK statusrtn; a_bit_field quiet : 1; a_bit_field jconnect : 1; } an_upgrade_db;
Parameters needed to connect to the database. They take the form of connection strings, such as the following:
"UID=DBA;PWD=sql;DBF=samples-dir\demo.db"
The database server would be started by the connection string START parameter. For example:
"START=c:\SQLAny12\bin32\dbeng12.exe"
A full example connection string including the START parameter:
"UID=DBA;PWD=sql;DBF=samples-dir\demo.db;START=c:\SQLAny12\bin32\dbeng12.exe"
For a list of connection parameters, see Connection parameters.