2010-10-18 130 views
0

我正在使用SQL Server數據庫。 在我的編碼時,我正在將整數值插入表中得到類型不匹配錯誤。 我的代碼vb6運行時錯誤13

set rst1=cnn1.execute("select distinct(tagid) from pgevent") 

它返回一些值 當我試圖插入到另一個表我得到錯誤

cnn1.execute("insert into tags values("+cint(rst1.fields(0).value)+")") 

現在正在歌廳錯誤 感謝

回答

1

的錯誤是因爲你將數字值附加到字符串。

這裏是替代

cnn1.execute("insert into tags values(" & cint(rst1.fields(0).value) & ")") 

OR

cnn1.execute("insert into tags values("+ rst1.fields(0).value +")") 

使用&當你想要的東西,以顯示爲字符串的一部分。