使用变量的INSERT语句

使用变量的INSERT语句

本文介绍了使用变量的INSERT语句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,


任何人都可以给我一个语法,通过VB将记录插入SQL服务器
使用变量的
代码?


以下声明失败!

sInsertQuery =" INSERT INTO TestTab(Col1,Col2,Col3,Col4)值(& _

str1&","& dt1&","& str2&","& str3&")"


其中str1 =" col1"

dt1 = getdate()

str2 =" col2"

str3 =" col3"


谢谢

Hi All,

Can anybody give me the syntax to insert a record into SQL server through VB
code using variables?

The following statement is failing!
sInsertQuery = "INSERT INTO TestTab (Col1, Col2, Col3, Col4) Values(" & _
str1 & "," & dt1 & "," & str2 & "," & str3 & ")"

where str1 = "col1"
dt1 = getdate()
str2 = "col2"
str3 = "col3"

Thanks

推荐答案






这篇关于使用变量的INSERT语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 19:28