SQCloudDisconnect
void SQCloudDisconnect (SQCloudConnection *connection);
Description
Closes the connection to the server. Also frees memory used by the SQCloudConnection object.
Parameters
- connection: a valid connection object obtained by SQCloudConnect or SQCloudConnectWithString
Return value
Nothing.
Example
int main (int argc, const char * argv[]) {
// setup config
SQCloudConfig config = {0};
config.username = "myusername";
config.password = "mypassword"
SQCloudConnection *conn = SQCloudConnect("myproject.sqlite.cloud", SQCLOUD_DEFAULT_PORT, &config);
if (SQCloudIsError(conn)) {
printf("ERROR connecting: %s (%d)\n", SQCloudErrorMsg(conn), SQCloudErrorCode(conn));
return -1;
} else {
printf("Connection to host OK...\n\n");
}
// do something with the conn object
...
// close connection
SQCloudDisconnect(conn);
}