]> granicus.if.org Git - php/commitdiff
Adding howto file for MS SQL
authorFrank M. Kromann <fmk@php.net>
Fri, 18 Aug 2000 22:24:27 +0000 (22:24 +0000)
committerFrank M. Kromann <fmk@php.net>
Fri, 18 Aug 2000 22:24:27 +0000 (22:24 +0000)
ext/mssql/mssql.dsp
ext/mssql/mssql_win32_howto.txt [new file with mode: 0644]

index 04c184cf69a62ff64222cdce1a54528a697c06d8..7e3ba2ef9c8a8232ed6d745491ec7b1925c3d08c 100644 (file)
@@ -167,5 +167,9 @@ SOURCE=.\php_mssql.h
 \r
 # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
 # End Group\r
+# Begin Source File\r
+\r
+SOURCE=.\mssql_win32_howto.txt\r
+# End Source File\r
 # End Target\r
 # End Project\r
diff --git a/ext/mssql/mssql_win32_howto.txt b/ext/mssql/mssql_win32_howto.txt
new file mode 100644 (file)
index 0000000..0e2668e
--- /dev/null
@@ -0,0 +1,42 @@
+Rules for building MSSQL
+------------------------
+
+The MSSQL project contains 4 configurations.
+
+The files needed for each configurations are:
+
+MSSQL 65 Release_TS
+MSSQL 65 Debug_TS
+
+       php_build\mssql-65\include\sqldb.h
+       php_build\mssql-65\include\sqlfront.h
+       php_build\mssql-65\lib\ntwdblib.lib
+
+MSSQL 70 Release_TS
+MSSQL 70 Debug_TS
+
+       php_build\mssql-70\include\sqldb.h
+       php_build\mssql-70\include\sqlfront.h
+       php_build\mssql-70\lib\ntwdblib.lib
+
+php_build is a directory at the same level as php4.
+
+Start Visual Studio, load php_modules.dsw, select the MSSQL projects,
+configuration and build it.
+
+This module requires ntwdblib.dll and one or more of the following dll's
+
+dbmsadsn.dll
+dbmsrpcn.dll
+dbmsshrn.dll
+dbmssocn.dll   for tcp/ip connections
+dbmsspxn.dll   for ipx/spx connections
+dbmsvinn.dll
+dbnmpntw.dll   for netbios connections
+
+All these files are installed while installing MS SQL Server. If the SQL Server
+is installed on another maschine you need to install the client tools on
+the web server as well.
+
+
+  
\ No newline at end of file