This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1ee4795
Showing
89 changed files
with
11,099 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/> | ||
<classpathentry kind="lib" path="src/mysql-connector-java.jar"/> | ||
<classpathentry kind="output" path="bin"/> | ||
</classpath> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>DBQuery</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.eclipse.jdt.core.javabuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.jdt.core.javanature</nature> | ||
</natures> | ||
</projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
eclipse.preferences.version=1 | ||
encoding/<project>=UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 | ||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve | ||
org.eclipse.jdt.core.compiler.compliance=1.8 | ||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate | ||
org.eclipse.jdt.core.compiler.debug.localVariable=generate | ||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate | ||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
org.eclipse.jdt.core.compiler.source=1.8 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ClassDiagram> | ||
<Class name="com.dbquery.interfaces.AbstractQueryObject" x="1008" y="16"> | ||
<AttributesDisplayFilter public-accepted="true" | ||
private-accepted="true" protected-accepted="true" | ||
default-accepted="true" static-accepted="false"/> | ||
<MethodDisplayFilter public-accepted="true" | ||
private-accepted="false" protected-accepted="false" | ||
default-accepted="false" static-accepted="false" | ||
accessors-accepted="false" constructors-accepted="false"/> | ||
<Association | ||
destinationClassName="com.dbquery.interfaces.IConnection" | ||
endpointName="dbManager" kind="Simple"/> | ||
<Communication destinationClassName="com.dbquery.interfaces.IConnection"/> | ||
</Class> | ||
<Class name="com.dbquery.factory.MSSQLFactory" x="245" y="198"> | ||
<AttributesDisplayFilter public-accepted="true" | ||
private-accepted="true" protected-accepted="true" | ||
default-accepted="true" static-accepted="false"/> | ||
<MethodDisplayFilter public-accepted="true" | ||
private-accepted="false" protected-accepted="false" | ||
default-accepted="false" static-accepted="false" | ||
accessors-accepted="false" constructors-accepted="false"/> | ||
<Extension destinationClassName="com.dbquery.factory.DatabaseFactory"/> | ||
<Communication destinationClassName="com.dbquery.interfaces.DBBasicInfo"/> | ||
</Class> | ||
<Class name="com.dbquery.factory.MySQLFactory" x="-70" y="197"> | ||
<AttributesDisplayFilter public-accepted="true" | ||
private-accepted="true" protected-accepted="true" | ||
default-accepted="true" static-accepted="false"/> | ||
<MethodDisplayFilter public-accepted="true" | ||
private-accepted="false" protected-accepted="false" | ||
default-accepted="false" static-accepted="false" | ||
accessors-accepted="false" constructors-accepted="false"/> | ||
<Extension destinationClassName="com.dbquery.factory.DatabaseFactory"/> | ||
<Communication destinationClassName="com.dbquery.interfaces.DBBasicInfo"/> | ||
</Class> | ||
<Class name="com.dbquery.factory.DatabaseFactory" x="79" y="44"> | ||
<AttributesDisplayFilter public-accepted="true" | ||
private-accepted="true" protected-accepted="true" | ||
default-accepted="true" static-accepted="false"/> | ||
<MethodDisplayFilter public-accepted="true" | ||
private-accepted="false" protected-accepted="false" | ||
default-accepted="false" static-accepted="false" | ||
accessors-accepted="false" constructors-accepted="false"/> | ||
</Class> | ||
<Class name="com.dbquery.interfaces.IConnection" x="757" y="-1"> | ||
<AttributesDisplayFilter public-accepted="true" | ||
private-accepted="true" protected-accepted="true" | ||
default-accepted="true" static-accepted="false"/> | ||
<MethodDisplayFilter public-accepted="true" | ||
private-accepted="false" protected-accepted="false" | ||
default-accepted="false" static-accepted="false" | ||
accessors-accepted="false" constructors-accepted="false"/> | ||
</Class> | ||
<Class name="com.dbquery.dal.MSSQLDBInfo" x="554" y="407"> | ||
<AttributesDisplayFilter public-accepted="true" | ||
private-accepted="true" protected-accepted="true" | ||
default-accepted="true" static-accepted="false"/> | ||
<MethodDisplayFilter public-accepted="true" | ||
private-accepted="false" protected-accepted="false" | ||
default-accepted="false" static-accepted="false" | ||
accessors-accepted="false" constructors-accepted="false"/> | ||
<Extension destinationClassName="com.dbquery.interfaces.DBBasicInfo"/> | ||
<Communication destinationClassName="com.dbquery.interfaces.DBBasicInfo"/> | ||
</Class> | ||
<Class name="com.dbquery.dal.DBConnection" x="770" y="158"> | ||
<AttributesDisplayFilter public-accepted="true" | ||
private-accepted="true" protected-accepted="true" | ||
default-accepted="true" static-accepted="false"/> | ||
<MethodDisplayFilter public-accepted="true" | ||
private-accepted="false" protected-accepted="false" | ||
default-accepted="false" static-accepted="false" | ||
accessors-accepted="false" constructors-accepted="false"/> | ||
<Extension destinationClassName="com.dbquery.interfaces.IConnection"/> | ||
<Association | ||
destinationClassName="com.dbquery.interfaces.DBBasicInfo" | ||
endpointName="dbinfo" kind="Simple"/> | ||
<Communication destinationClassName="com.dbquery.interfaces.DBBasicInfo"/> | ||
</Class> | ||
<Class name="com.dbquery.dal.MySQLDBInfo" x="713" y="408"> | ||
<AttributesDisplayFilter public-accepted="true" | ||
private-accepted="true" protected-accepted="true" | ||
default-accepted="true" static-accepted="false"/> | ||
<MethodDisplayFilter public-accepted="true" | ||
private-accepted="false" protected-accepted="false" | ||
default-accepted="false" static-accepted="false" | ||
accessors-accepted="false" constructors-accepted="false"/> | ||
<Extension destinationClassName="com.dbquery.interfaces.DBBasicInfo"/> | ||
</Class> | ||
<Class name="com.dbquery.interfaces.DBBasicInfo" x="455" y="-22"> | ||
<AttributesDisplayFilter public-accepted="true" | ||
private-accepted="true" protected-accepted="true" | ||
default-accepted="true" static-accepted="false"/> | ||
<MethodDisplayFilter public-accepted="true" | ||
private-accepted="false" protected-accepted="false" | ||
default-accepted="false" static-accepted="false" | ||
accessors-accepted="false" constructors-accepted="false"/> | ||
</Class> | ||
</ClassDiagram> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | ||
<!-- NewPage --> | ||
<html lang="zh"> | ||
<head> | ||
<!-- Generated by javadoc (1.8.0_74) on Tue Aug 23 15:04:26 CST 2016 --> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<title>所有类</title> | ||
<meta name="date" content="2016-08-23"> | ||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> | ||
<script type="text/javascript" src="script.js"></script> | ||
</head> | ||
<body> | ||
<h1 class="bar">所有类</h1> | ||
<div class="indexContainer"> | ||
<ul> | ||
<li><a href="com/dbquery/interfaces/AbstractQueryObject.html" title="com.dbquery.interfaces中的类" target="classFrame">AbstractQueryObject</a></li> | ||
<li><a href="com/dbquery/factory/DatabaseFactory.html" title="com.dbquery.factory中的接口" target="classFrame"><span class="interfaceName">DatabaseFactory</span></a></li> | ||
<li><a href="com/dbquery/interfaces/DBBasicInfo.html" title="com.dbquery.interfaces中的类" target="classFrame">DBBasicInfo</a></li> | ||
<li><a href="com/dbquery/dal/DBConnection.html" title="com.dbquery.dal中的类" target="classFrame">DBConnection</a></li> | ||
<li><a href="com/dbquery/interfaces/IConnection.html" title="com.dbquery.interfaces中的接口" target="classFrame"><span class="interfaceName">IConnection</span></a></li> | ||
<li><a href="com/dbquery/util/Model.html" title="com.dbquery.util中的类" target="classFrame">Model</a></li> | ||
<li><a href="com/dbquery/dal/MSSQLDBInfo.html" title="com.dbquery.dal中的类" target="classFrame">MSSQLDBInfo</a></li> | ||
<li><a href="com/dbquery/factory/MSSQLFactory.html" title="com.dbquery.factory中的类" target="classFrame">MSSQLFactory</a></li> | ||
<li><a href="com/dbquery/dal/MySQLDBInfo.html" title="com.dbquery.dal中的类" target="classFrame">MySQLDBInfo</a></li> | ||
<li><a href="com/dbquery/factory/MySQLFactory.html" title="com.dbquery.factory中的类" target="classFrame">MySQLFactory</a></li> | ||
</ul> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | ||
<!-- NewPage --> | ||
<html lang="zh"> | ||
<head> | ||
<!-- Generated by javadoc (1.8.0_74) on Tue Aug 23 15:04:26 CST 2016 --> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | ||
<title>所有类</title> | ||
<meta name="date" content="2016-08-23"> | ||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> | ||
<script type="text/javascript" src="script.js"></script> | ||
</head> | ||
<body> | ||
<h1 class="bar">所有类</h1> | ||
<div class="indexContainer"> | ||
<ul> | ||
<li><a href="com/dbquery/interfaces/AbstractQueryObject.html" title="com.dbquery.interfaces中的类">AbstractQueryObject</a></li> | ||
<li><a href="com/dbquery/factory/DatabaseFactory.html" title="com.dbquery.factory中的接口"><span class="interfaceName">DatabaseFactory</span></a></li> | ||
<li><a href="com/dbquery/interfaces/DBBasicInfo.html" title="com.dbquery.interfaces中的类">DBBasicInfo</a></li> | ||
<li><a href="com/dbquery/dal/DBConnection.html" title="com.dbquery.dal中的类">DBConnection</a></li> | ||
<li><a href="com/dbquery/interfaces/IConnection.html" title="com.dbquery.interfaces中的接口"><span class="interfaceName">IConnection</span></a></li> | ||
<li><a href="com/dbquery/util/Model.html" title="com.dbquery.util中的类">Model</a></li> | ||
<li><a href="com/dbquery/dal/MSSQLDBInfo.html" title="com.dbquery.dal中的类">MSSQLDBInfo</a></li> | ||
<li><a href="com/dbquery/factory/MSSQLFactory.html" title="com.dbquery.factory中的类">MSSQLFactory</a></li> | ||
<li><a href="com/dbquery/dal/MySQLDBInfo.html" title="com.dbquery.dal中的类">MySQLDBInfo</a></li> | ||
<li><a href="com/dbquery/factory/MySQLFactory.html" title="com.dbquery.factory中的类">MySQLFactory</a></li> | ||
</ul> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.