protected virtual void bindParms(Object[] ptb)
        {
            int pos = 1;

            if (ptb != null)
            {
                _gxDbCommand.ClearParameters();
                foreach (Object[] p in ptb)
                {
                    if (p.Length > 4 && p[4].Equals("rt"))
                    {
                        continue;
                    }
                    _gxDbCommand.AddParameter((string)p[0], p[1], (int)(p[2]), (int)(p[3]));
                    pos++;
                }
            }
        }