Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1.  
  2. public static string Updatecommand = "UPDATE tblFilm SET titel=@titel, beschrijving=@beschrijving" +
  3. "duur=@duur, prijs=@prijs,supplement=@supplement" +
  4. "WHERE ID=@ID";
  5. public static string Insertcommand = "INSERT INTO tblFilm (titel, beschrijving,duur,prijs,supplement) VALUES (@titel,@beschrijving,@duur,@prijs,@supplement)";
  6. public static string getNieuwID = "SELECT ID FROM * DESC";
  7. public static string selectCommand = "SELECT * FROM tblFilm";
  8. public static string deleteCommand = "DELETE * FROM tblFilm WHERE ID=@ID";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement