Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Visual Basic Express 2010を使用しており、Accessデータベースを使用しています
Dim count as Integer
SQL = "SELECT * FROM transac WHERE transac_id = " & "'" & count & "'"
あなたtransac_idはINTデータ型であり、文字列にするために一重引用符を使用していると思いcountます。
transac_id
INT
count
試す:
SQL = "SELECT * FROM transac WHERE transac_id = " & count
"select * from transac where transac_id = " & count;