数据库创建失败 ,具体原因 there is already an open detareader assoiated with this connection which must be closed first 。

解决方案 »

  1.   

    DataReader 没关闭。 用 google 翻译也知道咋回事了.
      

  2.   

    已经有datareader打开了。可以学习下英文哦
    already 已经
    assoiated 指定
    connection 连接
    closed first 请先关闭喵~
      

  3.   

    不知道不是你的错,看不懂英文去google翻译一下啊。哎
      

  4.   

    连数据库 微软有 SQLHelp.cs   可以下来看看。    自己写的话  用 using(){}  也挺好的
      

  5.   

    建议在detareader调用open之前,使用如下代码:
    if not detareader.isclosed then
        detareader.close()
    end if