diff options
author | Hiroshi Inoue <inoue@tpf.co.jp> | 2001-03-13 09:03:24 +0000 |
---|---|---|
committer | Hiroshi Inoue <inoue@tpf.co.jp> | 2001-03-13 09:03:24 +0000 |
commit | e376cb6078f4529e99a64c4abdfcd4d2f04f30f7 (patch) | |
tree | c8e72401edbf7187df8dd1984b2c7369b14f57ff | |
parent | 0c383155aeeb9d1efb918ad659ff51ae55983063 (diff) | |
download | postgresql-e376cb6078f4529e99a64c4abdfcd4d2f04f30f7.tar.gz postgresql-e376cb6078f4529e99a64c4abdfcd4d2f04f30f7.zip |
The attached file contains the registry settings required to install the
ODBC driver on Windows 9X/ME/NT/2K when using the later versions of the
driver that don't have the Installshield installation:
1) Install psqlodbc.dll in to C:\Windows\System or C:\Winnt\System32
2) Add the registry settings in the attached file using regedit.
A useful addition to src/interfaces/odbc perhaps?
Regards, Dave.
-rw-r--r-- | src/interfaces/odbc/psqlodbc.reg | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/interfaces/odbc/psqlodbc.reg b/src/interfaces/odbc/psqlodbc.reg new file mode 100644 index 00000000000..ac4322f9420 --- /dev/null +++ b/src/interfaces/odbc/psqlodbc.reg @@ -0,0 +1,17 @@ +REGEDIT4
+
+[HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBCINST.INI]
+
+[HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBCINST.INI\ODBC Drivers]
+"PostgreSQL"="Installed"
+
+[HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBCINST.INI\PostgreSQL]
+"APILevel"="1"
+"ConnectFunctions"="YYN"
+"Driver"="PSQLODBC.DLL"
+"DriverODBCVer"="02.50"
+"FileUsage"="0"
+"Setup"="PSQLODBC.DLL"
+"SQLLevel"="1"
+"UsageCount"=dword:00000001
+
|