http://hi.baidu.com/subendong/item/cc8130174aa66a0db98a1ab1 参照了这页面的解决方法 是lamp下的 问题没有解决
加了一下端口(端口应该是"host:1433",而不是有些说的 "host,1433"),结果可以连接但不能查询
message: Heterogeneous queries require the ANSI_NULLS and ANSI_WARNINGS options to be set for the connection. This ensures consistent query semantics. Enable these options and then reissue your query
报这个错误 google了一下 要
mssql_query("SET ANSI_NULLS ON");
mssql_query("SET ANSI_WARNINGS ON");
就可以了
--eof--