Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
CodeIgniter-TW
/
CodeIgniter-Language
Public
Notifications
You must be signed in to change notification settings
Fork
20
Star
15
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
CodeIgniter-Language
/
db_lang.php
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
35 lines (34 loc) · 2.1 KB
master
Breadcrumbs
CodeIgniter-Language
/
db_lang.php
Copy path
Top
File metadata and controls
Code
Blame
35 lines (34 loc) · 2.1 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link http://codeigniter.com
*/
defined('BASEPATH') OR exit('No direct script access allowed');
$lang['db_invalid_connection_str'] = '無法根據送出的連接字串確定資料庫設定';
$lang['db_unable_to_connect'] = '無法使用提供的設定連接到資料庫伺服器';
$lang['db_unable_to_select'] = '無法選擇指定的資料庫:%s';
$lang['db_unable_to_create'] = '無法創建指定的資料庫:%s';
$lang['db_invalid_query'] = '送出的查詢無效';
$lang['db_must_set_table'] = '查詢中必須設定要查詢的表名';
$lang['db_must_use_set'] = '更新資料請使用 Set 方法';
$lang['db_must_use_index'] = '必須指定索引以符合批次更新';
$lang['db_batch_missing_index'] = '批次更新作業中一個或多個行缺少指定的索引';
$lang['db_must_use_where'] = '更新作業必須包含 Where 條件';
$lang['db_del_must_use_where'] = '刪除作業必須包含 Where 或 Like 條件';
$lang['db_field_param_missing'] = '取得欄位需要指定表名稱';
$lang['db_unsupported_function'] = '您目前使用的資料庫支援不支援此功能';
$lang['db_transaction_failure'] = '交易失敗:執行回溯 (Rollback performed)';
$lang['db_unable_to_drop'] = '無法刪除指定的資料庫';
$lang['db_unsupported_feature'] = '您目前使用的資料庫不支援此功能';
$lang['db_unsupported_compression'] = '伺服器不支援您選擇的檔案壓縮格式';
$lang['db_filepath_error'] = '送出的檔案路徑無法寫入';
$lang['db_invalid_cache_path'] = '送出的站純路徑無效或無法寫入';
$lang['db_table_name_required'] = '此操作需要指定表名稱';
$lang['db_column_name_required'] = '此操作需要指定列名稱';
$lang['db_column_definition_required'] = '此操作需要指定列定義';
$lang['db_unable_to_set_charset'] = '無法設定字元集:%s';
$lang['db_error_heading'] = '資料庫發生錯誤';
You can’t perform that action at this time.