Example #1
0
        private string DbPKsDefinition(TableDefInfo tableInfo)
        {
            if (tableInfo == null)
            {
                return(DBConstants.EMPTY_STRING);
            }

            string strFieldNames = CreateConstraintSQL(tableInfo.IndexPK(), true, true);

            return(strFieldNames);
        }