示例#1
0
    public static string ReadOneFieldFromOneField(string strFieldName, string strTable, string strIdFieldName, string strID, string strTail)
    {
        string strReturn;

        SR_FTH_CORE.FTH_COREClient client = new SR_FTH_CORE.FTH_COREClient();

        strReturn = client.ReadOneFieldFromOneField(strFieldName, strTable, strIdFieldName, strID, strTail);

        client.Close();

        return(strReturn);
    }
示例#2
0
    public static DataSet GetAll(string strTable, string strTail)
    {
        DataSet dstItems;

        SR_FTH_CORE.FTH_COREClient client = new SR_FTH_CORE.FTH_COREClient();

        dstItems = client.GetAll(strTable, strTail);

        client.Close();

        return(dstItems);
    }
示例#3
0
    public static DataSet GetAllFromQuery(string strSQL)
    {
        DataSet dstItems;

        SR_FTH_CORE.FTH_COREClient client = new SR_FTH_CORE.FTH_COREClient();

        dstItems = client.GetAllFromQuery(strSQL);

        client.Close();

        return(dstItems);
    }
示例#4
0
    public static string ReadOneFieldFromQuery(string strFieldName, string strQuery)
    {
        string strReturn;

        SR_FTH_CORE.FTH_COREClient client = new SR_FTH_CORE.FTH_COREClient();

        strReturn = client.ReadOneFieldFromQuery(strFieldName, strQuery);

        client.Close();

        return(strReturn);
    }