Creates a SQLServerPreparedStatement object for sending parameterized SQL statements to the database.
public java.sql.PreparedStatement prepareStatement(java.lang.String sql, java.lang.String[] columnNames)
Parameters
sql
A string containing an SQL statement.
columnNames
An array of strings.
Return Value
A PreparedStatement object.
Exceptions
Remarks
This prepareStatement method is specified by the prepareStatement method in the java.sql.Connection interface.