This repository has been archived by the owner on May 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from lets-blade/dev
Dev
- Loading branch information
Showing
15 changed files
with
380 additions
and
216 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
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
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
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
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,25 @@ | ||
package com.blade.jdbc; | ||
|
||
/** | ||
* Blade JDBC Const | ||
* | ||
* @author biezhi | ||
* @date 2017/11/10 | ||
*/ | ||
public interface Const { | ||
|
||
String SPACE = " "; | ||
String SQL_AND = "AND"; | ||
String SQL_OR = "OR"; | ||
String SQL_WHERE = "WHERE"; | ||
String SQL_IN = "IN"; | ||
String SQL_INSERT = "INSERT INTO"; | ||
|
||
String SQL_QM = "?"; | ||
String EXECUTE_SQL_PREFIX = "⬢ Execute SQL"; | ||
String PARAMETER_PREFIX = "⬢ Parameters "; | ||
|
||
char IN_START = '('; | ||
char IN_END = ')'; | ||
|
||
} |
Oops, something went wrong.