在Android开发过程中经常遇到这样的一个问题,The connection to adb is down, and a severe error has occured. 解决方案一: 1.为了以后方便,先把adb.exe的路径配置到环境变量中的path(相关请查阅环境变量配置方法,这里不详细指出),之后就可以在命令行中在任意路径下启动adb; 2.针对上述问题,先杀死进进程,adb kill-server,然后在adb start-server,就可以启动adb,此时要重启一下eclips…
PHP中实现MySQL嵌套事务的两种解决方案 一.问题起源 在MySQL的官方文档中有明确的说明不支持嵌套事务: Transactions cannot be nested. This is a consequence of the implicit commit performed for any current transaction when you issue a START TRANSACTION statement or one of its synonyms. 但是在我们开发一个复…