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.
これは私が使用したテーブルアダプターです。このコードでは、ユーザー名がデータベースに存在するかどうかをトラップします。どうやってやるの?私はtableadapterが初めてなので、この問題を解決するのは難しいです。
TblGradesUserTableAdapter1.Insert(txtUsername.Text, txtPassword.Text, userType)
私を助けてください。ありがとう!
同じテーブル アダプターに新しいクエリを追加するとSELECT count、特定のユーザー名のユーザー名の数が返されます。
SELECT count
たとえば、これを行うことができます
Dim n as int = TblGradesUserTableAdapter1.CheckUserName(txtUsername.Text) If n = 0 then // insert the record Else //messagebox the duplicate End if