Difference between revisions of "Connecting and truncating a table in mysql"

From MyWiki
Jump to: navigation, search
(Created page with "Statement stTruncate = con.createStatement();<br> stTruncate.executeUpdate("truncate table tblName");<br>")
 
(No difference)

Latest revision as of 13:51, 24 February 2016

Statement stTruncate = con.createStatement();
stTruncate.executeUpdate("truncate table tblName");