Simplest Way to Test ODBC on WIndows

后端 未结 6 1665
暖寄归人
暖寄归人 2020-12-14 00:25

With unixODBC you can use a simple command line utility called \"isql\" to test your connection and permissions of some queries. Without having to write extra code or instal

6条回答
  •  Happy的楠姐
    2020-12-14 01:13

    For ad hoc queries, the ODBC Test utility is pretty handy. Its design and interface is more oriented toward testing various parts of the ODBC API. But it works quite nicely for running queries and showing the output. It is part of the Microsoft Data Access Components.

    To run a query, you can click the connect button (or use ctrl-F), choose a data source, type a query, then ctrl-E to execute it and ctrl-R to display the results (e.g., if it is a SELECT or something that returns a cursor).

提交回复
热议问题