|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如IBM公司最近宣布让渠道合作伙伴分销其SaaS应用程序的新计划。微软认为MySQL学习教程是销售其云计算服务的重要组成部分。然而即使有这种趋势,DBaaS仍然不同于内部数据库,解决方案提供商必须认识到这一点;否则,他们不仅仅是丢失几个客户,而是要失去的更多。在前一篇文章中,报告了怎样举行MySQL源程序代码的编译链接,可是没有报告运转情形,在依照上一篇文章代码下举行编译运转后,发明没法链接数据库文件,明显是在mysql_real_connect()函数中呈现了成绩。在mysql的英文手册中找到关于mysql_real_connect()的以下形貌:
//函数原型形貌MYSQL*mysql_real_connect(MYSQL*mysql,constchar*host,constchar*user,
constchar*passwd,constchar*db,unsignedintport,constchar*unix_socket,
unsignedlongclient_flag)
Description
mysql_real_connect()attemptstoestablishaconnectiontoaMySQLdatabaseengine
runningonhost.mysql_real_connect()mustcompletesuccessfullybeforeyoucan
executeanyotherAPIfunctionsthatrequireavalidMYSQLconnectionhandlestructure.
Theparametersarespecifiedasfollows:
*
ThefirstparametershouldbetheaddressofanexistingMYSQLstructure.Before
callingmysql_real_connect()youmustcallmysql_init()toinitializetheMYSQL
structure.Youcanchangealotofconnectoptionswiththemysql_options()call.
SeeSection |
|