A
asrahma1111
I'm writing up some coding conventions for our company, I think I
might have read it a long time ago, and I see it in code out there all
the time, but I'm not sure why. I'm guessing because it improves
performance. Basically I'm asking whether this:
import java.sql.Statement;
import java.sql.ResultSet;
import java.sql.Connection;
import java.sql.SQLException;
As opposed to this:
import java.sql.*;
improves performance? And if it does, why? Thanks, your feedback is
much appreciated.
might have read it a long time ago, and I see it in code out there all
the time, but I'm not sure why. I'm guessing because it improves
performance. Basically I'm asking whether this:
import java.sql.Statement;
import java.sql.ResultSet;
import java.sql.Connection;
import java.sql.SQLException;
As opposed to this:
import java.sql.*;
improves performance? And if it does, why? Thanks, your feedback is
much appreciated.