摘要:
http://files.cnblogs.com/fightLonely/SharePoint%e7%ae%80%e4%bb%8b.rar 阅读全文
摘要:
开发环境:win xp sp3 ,vs 2008,sql ce 3.0 sql 2000 sp4 using System; using System.IO; using System.Data.SqlServerCe; using System.Data.SqlClient; using SmartDeviceTest1.Data; using System.... 阅读全文
摘要:
select语句中只能使用sql函数对字段进行操作(链接sql server),select 字段1 from 表1 where 字段1.IndexOf("云")=1;这条语句不对的原因是indexof()函数不是sql函数,改成sql对应的函数就可以了。left()是sql函数。select 字段1 from 表1 where charindex('云',字段1)=1;字符串函数对二进制数据、字... 阅读全文