Adapter Online Help > TDV NetSuite Adapter > SQL Compliance > DELETE Statements
 
DELETE Statements
To delete from a table, use DELETE statements.
DELETE Syntax
The DELETE statement requires the table name in the FROM clause and the row's primary key in the WHERE clause.
<delete_statement> ::= DELETE FROM <table_name> WHERE { InternalId = <expression> } [ { AND | OR } ... ]
 
<expression> ::=
| @ <parameter>
| ?
| <literal>
You can use the executeUpdate method of the Statement or PreparedStatement classes to execute data manipulation commands and retrieve the number of affected rows.
Connection connection = DriverManager.getConnection("jdbc:netsuite:Account Id=XABC123456;Password=password;User=user;Role Id=3;Version=2013_1;Location=C:\\myfolder\\;",);
String cmd = "DELETE FROM Account WHERE InternalId = ?";
PreparedStatement pstmt = connection.prepareStatement(cmd);
pstmt.setString(1, "");
int count=pstmt.executeUpdate();
connection.close();