mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
18 lines
419 B
HTML
18 lines
419 B
HTML
<html>
|
|
<body>
|
|
Reports uses of specific JDBC driver classes. Use of such classes will
|
|
bind your project to a specific database and driver, defeating the purpose of JDBC and
|
|
resulting in loss of portability.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
import java.sql.Driver;
|
|
|
|
abstract class Sample implements Driver {
|
|
public void foo() {
|
|
Sample sample;
|
|
}
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |