How to check for the existence of a DB?

前端 未结 8 2199
Happy的楠姐
Happy的楠姐 2020-12-18 05:52

I am wondering if there is an elegant way to check for the existence of a DB? In brief, how do test the connection of a db connection string?

Thanks

8条回答
  •  感情败类
    2020-12-18 06:39

    Just try a DBConnection.Open() wrapped in a try block catching DBException.

    About as elegant a solution as you are going to find.

提交回复
热议问题