-
Notifications
You must be signed in to change notification settings - Fork 21
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
Showing
45 changed files
with
258 additions
and
258 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
2 changes: 1 addition & 1 deletion
2
plugin-dev-raw/zh/inspectionDescriptions/HibernateMappingDatasourceDomInspection.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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<html> | ||
<body> | ||
報告 <code>find</code> 或 <code>find_by</code> 在視圖或視圖幫助程序中的用法。 數據庫交互應由控制器執行,並存儲在變量中供視圖訪問。 | ||
報告 <code>find</code> 或 <code>find_by</code> 在視圖或視圖幫助程序中的用法。 資料庫交互應由控制器執行,並存儲在變量中供視圖訪問。 | ||
<p><span style="font-size: smaller;">受 <a href="https://matthewpaulmoore.com/post/5190436725/ruby-on-rails-code-quality-checklist">'Ruby on Rails Code Quality Checklist'</a> 啟發</span></p> | ||
</body> | ||
</html> |
4 changes: 2 additions & 2 deletions
4
plugin-dev-raw/zh/inspectionDescriptions/SqlCurrentSchemaInspection.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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<html> | ||
<body> | ||
報告當前會話中未自省的架構和數據庫。 | ||
報告當前會話中未自省的架構和資料庫。 | ||
<p>例如,當您嘗試在未內省的架構中創建表時,可能會出現此警告。</p> | ||
<p>內省是一種檢查數據源的方法。 執行內省時,將從數據庫中檢索結構信息以檢測各種對象及其特性。例如,可能是表、列、函數和其他元素。</p> | ||
<p>內省是一種檢查數據源的方法。 執行內省時,將從資料庫中檢索結構信息以檢測各種對象及其特性。例如,可能是表、列、函數和其他元素。</p> | ||
</body> | ||
</html> |
2 changes: 1 addition & 1 deletion
2
plugin-dev-raw/zh/inspectionDescriptions/SqlJoinWithoutOnInspection.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
2 changes: 1 addition & 1 deletion
2
plugin-dev-raw/zh/inspectionDescriptions/SqlNoDataSourceInspection.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<html> | ||
<body> | ||
報告<b>數據庫</b>工具視窗中缺少數據源(<b>視圖 | 工具視窗 | 數據庫</b>)。 | ||
報告<b>資料庫</b>工具視窗中缺少數據源(<b>視圖 | 工具視窗 | 資料庫</b>)。 | ||
</body> | ||
</html> |
4 changes: 2 additions & 2 deletions
4
plugin-dev-raw/zh/inspectionDescriptions/SqlSideEffectsInspection.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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<html> | ||
<body> | ||
報告在唯讀連接期間可能會修改數據庫的語句。 <p>要為連接啟用唯讀模式,請在<b>數據庫</b>工具視窗(<b>視圖 | 工具視窗 | 數據庫</b>)中右鍵點擊數據源,然後選擇<b>屬性</b>。 | ||
報告在唯讀連接期間可能會修改資料庫的語句。 <p>要為連接啟用唯讀模式,請在<b>資料庫</b>工具視窗(<b>視圖 | 工具視窗 | 資料庫</b>)中右鍵點擊數據源,然後選擇<b>屬性</b>。 | ||
在<b>數據源和驅動程序</b>對話框中,點擊<b>選項</b>頁籤並選中<b>唯讀</b>復選框。</p> | ||
<p>示例(MySQL):</p> | ||
<pre><code>CREATE TABLE foo(a INT); | ||
INSERT INTO foo VALUES (1);</code></pre> | ||
<p>由於 <code>CREATE TABLE</code> 和<code>INSERT INTO</code> 語句會導致數據庫修改,因此這些語句將在唯讀連接模式中高亮顯示。</p> | ||
<p>由於 <code>CREATE TABLE</code> 和<code>INSERT INTO</code> 語句會導致資料庫修改,因此這些語句將在唯讀連接模式中高亮顯示。</p> | ||
</body> | ||
</html> |
10 changes: 5 additions & 5 deletions
10
plugin-dev-raw/zh/inspectionDescriptions/SqlStorageInspection.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
2 changes: 1 addition & 1 deletion
2
plugin-dev-raw/zh/inspectionDescriptions/SqlUnicodeStringLiteralInspection.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
2 changes: 1 addition & 1 deletion
2
plugin-dev-raw/zh/inspectionDescriptions/UseOfJDBCDriverClass.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
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
Oops, something went wrong.