Windows アプリケーション

In the real world, differences in drivers and the level of ODBC support lessens the potential of ODBC:

現実的には、ドライバやその ODBC サポート レベルの違いが ODBC のポテンシャルを制限して しまいます:

アプリケーションの作成

"If I write an application for Postgres can I write it using ODBC calls to the Postgres server, or is that only when another database program like MS SQL Server or Access needs to access the data?"

"もし PostgreSQL のアプリケーション を作成する場合、ODBC を使い PostgreSQL サーバーの呼び出しを行える でしょうか? あるいはそれは MS SQL サーバーや Access のような他のデータベース プログラムがデータにアクセスする時に使用できるだけでしょうか?"

The ODBC API is the way to go. For Visual C++ coding you can find out more at Microsoft's web site or in your VC++ docs.

ODBC API は、どちらにも 通用します。 Visual C++ でのコーディング情報は、 マイクロソフトの Web サイト、あるいは VC++ のドキュメントの中に見つけることができます。

Visual Basic and the other RAD tools have Recordset objects that use ODBC directly to access data. Using the data-aware controls, you can quickly link to the ODBC back end database (very quickly).

Visual Basic や他の RAD ツールは、データにアクセスするために直接 ODBC を使うレコードセットオブジェクトを持って います。この data-aware コントロールを使って、あなたは (非常に素早く)その ODBC データベースバックエンドにリンクすることができます。

Playing around with MS Access will help you sort this out. Try using File->Get External Data.

MS Access の ファイル -> 外部データの取り込み(G) を試してみれば、このことが良く分かると思います。

Tip: You'll have to set up a DSN first.

先ず最初に DSN を設定しなければならない。