Oracle数据库表命名规则及验证中文表名的方法

本文介绍了Oracle数据库中表名的命名规则,并提供了一段用于验证表名是否符合规范的C#代码实现。表名必须以字母开头,长度限制为1到30个字符,允许包含特定符号及中文字符(尽管不推荐使用中文)。通过正则表达式检查表名的有效性。
摘要由CSDN通过智能技术生成

 Naming Rules
         Table names and column names:
         1.Must begin with a letter
         2.Must be 1-30 characters long
         3.Must contain only A-Z, a-z, 0-9, _, $, and #
         4.Must not duplicate the name of another object owned by the same user
         5.Must not be an Oracle server reserved word
但是oracle805往后,表名已经可以是中文的了,虽然并不提倡使用.

using System.Text.RegularExpressions;  
private bool checknewtablename(string newname)  
{  
     string patternname = @"/b[a-zA-Z/u4e00-/u9fa5][a-zA-Z0-9#$_/u4e00-/u9fa5]{0,29}";  //正则表达式  
     System.Text.RegularExpressions.Match m = null;  
     if (newname != null && newname != "")  
     {  
         if (GetLength(newname) <= 30)  //GetLength()函数在后面有定义,获得含有中文的字符串的长度.  
         {  
             m = System.Text.RegularExpressions.Regex.Match(newname, patternname);  
             if (m.Success)  
             {  
                 if (m.Groups.Count == 1)  
                 {  
                     if (m.Groups[0].Length != newname.Length)  
                         return false;  
                     else  
                         return true;  
                 }  
                 else  
                     return false;  
             }  
             else  
                 return false;  
         }  
         else  
             return false;  
     }  
     return false;  
}

//获取字符串的长度,主要解决含有中文的特殊情况.
public static int GetLength(string strSource)
{
    Regex regex = new Regex("[/u4e00-/u9fa5]+", RegexOptions.Compiled);
    int nLength = strSource.Length;

    for (int i = 0; i < strSource.Length; i++)
    {
        if (regex.IsMatch(strSource.Substring(i, 1)))
        {
            nLength++;
        }
    }

    return nLength;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值