Control TableAdapter Command Timeout Globally

前端 未结 4 533
失恋的感觉
失恋的感觉 2021-01-03 05:01

I have a DataSet with a QueriesTableAdapter. In order to control the SqlCommand.CommandTimeout I\'ve added a partial class called QueriesTableAdapter with a public method ca

相关标签:
4条回答
  • 2021-01-03 05:38

    All generated TableAdapters inherit from Component. Therefore, you could write a method like this that uses reflection to extract the adapter property:

        private void ChangeTimeout(Component component, int timeout)
        {
            if (!component.GetType().Name.Contains("TableAdapter"))
            {
                return;
            }
    
            PropertyInfo adapterProp = component.GetType().GetProperty("Adapter", BindingFlags.NonPublic | BindingFlags.GetProperty | BindingFlags.Instance);
            if (adapterProp == null)
            {
                return;
            }
    
            SqlDataAdapter adapter = adapterProp.GetValue(component, null) as SqlDataAdapter;
            if (adapter == null)
            {
                return;
            }
    
            adapter.SelectCommand.CommandTimeout = timeout;
        }
    

    You then can call it like this:

    MyTableAdapter ta = new MyTableAdapter();
    this.ChangeTimeout(ta,1000);
    

    I'm assuming that since you're using typed DataSet's that you're still in .NET 2.0 which is why I didn't bother making this an extension method.

    0 讨论(0)
  • 2021-01-03 05:40

    I have tried both the options and giving some issues On 1st Answer which namespace have to be imported/used for CommandCollection object on 2ns Answer adapter.SelectCommand is returning null value

    0 讨论(0)
  • 2021-01-03 05:45

    for some reason, my adapter's .selectcommand was null so i ended up having to go through the CommandCollection object instead, so i thought i'd post my small change based on the previous answer above.

    includes:

    using System.ComponentModel;
    using System.Reflection;
    

    code:

    private void ChangeTimeout(Component component, int timeout)
            {
                if (!component.GetType().Name.Contains("TableAdapter"))
                {
                    return;
                }
    
                PropertyInfo adapterProp = component.GetType().GetProperty("CommandCollection", BindingFlags.NonPublic | BindingFlags.GetProperty | BindingFlags.Instance);
                if (adapterProp == null)
                {
                    return;
                }           
    
                SqlCommand[] command = adapterProp.GetValue(component, null) as SqlCommand[];
    
                if (command == null)
                {
                    return;
                }
    
                command[0].CommandTimeout = timeout;            
            }
    
    0 讨论(0)
  • 2021-01-03 05:54

    BFree and mark's similar solutions work well with reflection. Below is a slight refinement that I think yields neater code.

    You can also change the base class that the TableAdapter uses in the DataSet designer. You can change your TableAdapter's base class to MyTableAdapterBaseClass or similar to provide the functionality you need. You can make this change quickly on all your TableAdapters by doing a 'Find in Files' and replace on your DataSets' .xsd files.

    Instead of BFree's method on the caller with signature:

    private void ChangeTimeout(Component component, int timeout)
    

    you can then create a method on the callee TableAdapter's base class with signature:

    public void ChangeTimeout(int timeout)
    
    0 讨论(0)
提交回复
热议问题