SmileeTiger
Programmer
I want to do a query such as this one:<br>
SQLstmt3 = "select CPUID, SoftID, CDID, HDDID, MouseID, KeyboardID, MonitorID, FDDID, RAMSize, VideoID, SoundCardID from CustomSystem where CSID = '" & CSID & "')"<br>
<br>
The only problem is CSID is a Number (AutoNumber) in my database. I know that '" & CSID & "' specifies a string. How do I tell the system that is is a number and not a string.
SQLstmt3 = "select CPUID, SoftID, CDID, HDDID, MouseID, KeyboardID, MonitorID, FDDID, RAMSize, VideoID, SoundCardID from CustomSystem where CSID = '" & CSID & "')"<br>
<br>
The only problem is CSID is a Number (AutoNumber) in my database. I know that '" & CSID & "' specifies a string. How do I tell the system that is is a number and not a string.