<tfoot id='rpQ5p'></tfoot>
        • <bdo id='rpQ5p'></bdo><ul id='rpQ5p'></ul>
        <i id='rpQ5p'><tr id='rpQ5p'><dt id='rpQ5p'><q id='rpQ5p'><span id='rpQ5p'><b id='rpQ5p'><form id='rpQ5p'><ins id='rpQ5p'></ins><ul id='rpQ5p'></ul><sub id='rpQ5p'></sub></form><legend id='rpQ5p'></legend><bdo id='rpQ5p'><pre id='rpQ5p'><center id='rpQ5p'></center></pre></bdo></b><th id='rpQ5p'></th></span></q></dt></tr></i><div id='rpQ5p'><tfoot id='rpQ5p'></tfoot><dl id='rpQ5p'><fieldset id='rpQ5p'></fieldset></dl></div>

        <small id='rpQ5p'></small><noframes id='rpQ5p'>

      1. <legend id='rpQ5p'><style id='rpQ5p'><dir id='rpQ5p'><q id='rpQ5p'></q></dir></style></legend>

        如何验证SqlAlChemy引擎对象

        How to verify SqlAlchemy engine object(如何验证SqlAlChemy引擎对象)
          <tbody id='u3HYQ'></tbody>

            <tfoot id='u3HYQ'></tfoot>
              <i id='u3HYQ'><tr id='u3HYQ'><dt id='u3HYQ'><q id='u3HYQ'><span id='u3HYQ'><b id='u3HYQ'><form id='u3HYQ'><ins id='u3HYQ'></ins><ul id='u3HYQ'></ul><sub id='u3HYQ'></sub></form><legend id='u3HYQ'></legend><bdo id='u3HYQ'><pre id='u3HYQ'><center id='u3HYQ'></center></pre></bdo></b><th id='u3HYQ'></th></span></q></dt></tr></i><div id='u3HYQ'><tfoot id='u3HYQ'></tfoot><dl id='u3HYQ'><fieldset id='u3HYQ'></fieldset></dl></div>
                <bdo id='u3HYQ'></bdo><ul id='u3HYQ'></ul>

              • <legend id='u3HYQ'><style id='u3HYQ'><dir id='u3HYQ'><q id='u3HYQ'></q></dir></style></legend>
              • <small id='u3HYQ'></small><noframes id='u3HYQ'>

                  本文介绍了如何验证SqlAlChemy引擎对象的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我可以使用无效的用户名、密码或地址声明engine对象,并且不会得到任何异常或错误:

                  from sqlalchemy import create_engine
                  engine = create_engine('mysql://nouser:nopassword@123.456.789')
                  print engine
                  

                  它像是有效的引擎对象一样打印:

                  Engine(mysql://nouser:***@123.456.789)
                  

                  验证(检查)engine对象是否有效或者它是否"可连接"到数据库的常用方法是什么?

                  推荐答案

                  问题:如何验证引擎对象是否"可连接"?

                  来自(DOCs):

                  请注意,在调用Engine.connect()方法或调用依赖于此方法的操作(如Engine.ecute())之前,引擎及其基础池不会建立第一个实际的DBAPI连接。这样,Engine和Pool可以说具有懒惰的初始化行为。

                  因此,若要测试Engine对象是否"可连接",需要显式调用Engine.connect(),或尝试以某种其他方式使用引擎。

                  from sqlalchemy import create_engine
                  engine = create_engine('mysql://nouser:nopassword@123.456.789')
                  engine.connect()
                  

                  将引发错误:

                  sqlalchemy.exc.OperationalError: (_mysql_exceptions.OperationalError) (2005, "Unknown MySQL server host '123.456.789' (0)")
                  

                  这篇关于如何验证SqlAlChemy引擎对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Split a Pandas column of lists into multiple columns(将 Pandas 的列表列拆分为多列)
                  How does the @property decorator work in Python?(@property 装饰器在 Python 中是如何工作的?)
                  What is the difference between old style and new style classes in Python?(Python中的旧样式类和新样式类有什么区别?)
                  How to break out of multiple loops?(如何打破多个循环?)
                  How to put the legend out of the plot(如何将传说从情节中剔除)
                  Why is the output of my function printing out quot;Nonequot;?(为什么我的函数输出打印出“无?)
                      <tfoot id='NNSSl'></tfoot>

                      • <legend id='NNSSl'><style id='NNSSl'><dir id='NNSSl'><q id='NNSSl'></q></dir></style></legend>
                          <tbody id='NNSSl'></tbody>

                        <small id='NNSSl'></small><noframes id='NNSSl'>

                        <i id='NNSSl'><tr id='NNSSl'><dt id='NNSSl'><q id='NNSSl'><span id='NNSSl'><b id='NNSSl'><form id='NNSSl'><ins id='NNSSl'></ins><ul id='NNSSl'></ul><sub id='NNSSl'></sub></form><legend id='NNSSl'></legend><bdo id='NNSSl'><pre id='NNSSl'><center id='NNSSl'></center></pre></bdo></b><th id='NNSSl'></th></span></q></dt></tr></i><div id='NNSSl'><tfoot id='NNSSl'></tfoot><dl id='NNSSl'><fieldset id='NNSSl'></fieldset></dl></div>

                            <bdo id='NNSSl'></bdo><ul id='NNSSl'></ul>