///////////////////////////////////
| 82 | |
| 83 | //////////////////////////////////////// |
| 84 | void PhxSQLClientBase::InitProperty(MySQLProp_t * poProperty) { |
| 85 | poProperty->tEndPoint.m_iPort = 0; |
| 86 | |
| 87 | memset(poProperty->pcUser, 0, sizeof(poProperty->pcUser)); |
| 88 | memset(poProperty->pcPass, 0, sizeof(poProperty->pcPass)); |
| 89 | memset(poProperty->pcDB, 0, sizeof(poProperty->pcDB)); |
| 90 | memset(poProperty->pcNULL, 0, sizeof(poProperty->pcNULL)); |
| 91 | poProperty->iClientFlag = 0; |
| 92 | |
| 93 | mysql_init(&m_poMySQLProp->connection); |
| 94 | poProperty->bConnected = false; |
| 95 | } |
| 96 | |
| 97 | const MySQLEndPoint_t & PhxSQLClientBase::GetConnectEndPoint() { |
| 98 | return m_poMySQLProp->tEndPoint; |
nothing calls this directly
no outgoing calls
no test coverage detected