k**y 发帖数: 320 | 1 怎样用ASP向Foxpro里插入Date型数据?
我试了
strSQL="insert into testDate values ('01/01/01')"
Set sqlResult=Conn.Execute(strSQL)
strSQL="insert into testDate values (cdate('01/01/01'))"
strSQL="insert into testDate values (date(01,01,01))"
...
都不对 :( |
|
l*******e 发帖数: 10 | 2 需要php编程,
$db = DbConn::GetConnect("Database");
$strSql ="SELECT * FROM `AAAtable` where userid= '$userid' ";
$countRows =$db->FetchRow($strSql);
$b="";//颜色。
if(!empty($countRows)){
$b="#ffffff";
}else
{
$b="eeeeee";
}
?>
用户名字
还没搞定,联络我msn: l*******[email protected] |
|
w*****u 发帖数: 299 | 3 目的即使user input的电影名字不完全,也可以找出可能的title.
因为用Accss Database, 所以用 “*" instead of "%". 还是不对,
请帮忙看看,谢乐谢乐,如果有更好的这类search功能的codes, 能
不能email给我 by e*****[email protected]?
Dim strSplit, i
strSplit = Request.Form("Title")
arrstrSplit = Split(strSplit)
For i=0 to UBound(arrstrSplit)
strSQL = "select * from Movies where Title LIKE '*"&
arrstrSplit(i)&"*'"
NEXT
rst.Open strSQL, StrConn |
|
e*****a 发帖数: 321 | 4 你在click事件中是用doCmd.OpenQuery()还是用doCmd.RunSQL()?
用doCmd.OpenQuery()是可以执行现成的Query, 效果跟macro里的open query一样,估
计你就是用的这个,但是这个的缺点就是不能把form里填空填进去的那些值作为参数传
递到SQL statement里去,因为括号里只能填一个现成的query的名字,没有做手脚的空
间;
用doCmd.RunSQL()貌似可以,因为括号里需要一个字符串格式的SQL Statement,俺企
图的就是搞类似于这样的办法:
Dim strValue As String
strValue = me.text0.value
strSQL = "INSERT INTO xxxx VALUES(" & strValue & ")"
doCmd.RunSQL(strSQL)
自己觉得从道理上没有问题,结果还是不行。。。算了,郁闷了,买书去了。。。 |
|
j**i 发帖数: 419 | 5 strSQL's value is replaced repeatly in loop?
sth wrong?
~~~~~~~~~~~~~
? |
|
j******w 发帖数: 4429 | 6 我试了一下
可以的
Private Sub Command2_Click()
Dim str As String
str = Me.Text0.Value
Dim strtext As String
DoCmd.RunSQL "insert into test (id) values ('" & str & "');"
End Sub
我的str 写上zhang, wwang等 都加到表test上了
你大概strSQL地引号不对 |
|