Example #1
0
        private static SO_NET_Profile__default[] getRecord(
            DataTable dataTable_in
            )
        {
            DataColumn _dc_ifprofile = null;

            SO_NET_Profile__default[] _output
                = new SO_NET_Profile__default[dataTable_in.Rows.Count];
            for (int r = 0; r < dataTable_in.Rows.Count; r++)
            {
                if (r == 0)
                {
                    _dc_ifprofile = dataTable_in.Columns["IFProfile"];
                }

                _output[r] = new SO_NET_Profile__default();
                if (dataTable_in.Rows[r][_dc_ifprofile] == System.DBNull.Value)
                {
                    _output[r].IFProfile = 0L;
                }
                else
                {
                    _output[r].IFProfile = (long)dataTable_in.Rows[r][_dc_ifprofile];
                }

                _output[r].HasChanges = false;
            }

            return(_output);
        }
Example #2
0
 /// <summary>
 /// Inserts/Updates NET_Profile__default values into/on Database. Inserts if NET_Profile__default doesn't exist or Updates if NET_Profile__default already exists.
 /// </summary>
 /// <param name="forceUpdate_in">assign with True if you wish to force an Update (even if no changes have been made since last time getObject method was run) and False if not</param>
 /// <returns>True if it didn't exist (INSERT), and False if it did exist (UPDATE)</returns>
 public static bool setObject(
     SO_NET_Profile__default NET_Profile__default_in,
     bool forceUpdate_in
     )
 {
     return(setObject(
                NET_Profile__default_in,
                forceUpdate_in,
                null
                ));
 }
Example #3
0
        /// <summary>
        /// Inserts/Updates NET_Profile__default values into/on Database. Inserts if NET_Profile__default doesn't exist or Updates if NET_Profile__default already exists.
        /// </summary>
        /// <param name="forceUpdate_in">assign with True if you wish to force an Update (even if no changes have been made since last time getObject method was run) and False if not</param>
        /// <param name="dbConnection_in">Database connection, making the use of Database Transactions possible on a sequence of operations across the same or multiple DataObjects</param>
        /// <returns>True if it didn't exist (INSERT), and False if it did exist (UPDATE)</returns>
        public static bool setObject(
            SO_NET_Profile__default NET_Profile__default_in,
            bool forceUpdate_in,
            DBConnection dbConnection_in
            )
        {
            bool ConstraintExist_out;

            if (forceUpdate_in || NET_Profile__default_in.HasChanges)
            {
                DBConnection _connection = (dbConnection_in == null)
                                        ? DO__Utilities.DBConnection_createInstance(
                    DO__Utilities.DBServerType,
                    DO__Utilities.DBConnectionstring,
                    DO__Utilities.DBLogfile
                    )
                                        : dbConnection_in;
                IDbDataParameter[] _dataparameters = new IDbDataParameter[] {
                    _connection.newDBDataParameter("IFProfile_", DbType.Int64, ParameterDirection.Input, NET_Profile__default_in.IFProfile, 0),

                    //_connection.newDBDataParameter("Exists", DbType.Boolean, ParameterDirection.Output, 0, 1)
                    _connection.newDBDataParameter("Output_", DbType.Int32, ParameterDirection.Output, null, 0)
                };
                _connection.Execute_SQLFunction(
                    "sp0_NET_Profile__default_setObject",
                    _dataparameters
                    );
                if (dbConnection_in == null)
                {
                    _connection.Dispose();
                }

                ConstraintExist_out = (((int)_dataparameters[1].Value & 2) == 1);
                if (!ConstraintExist_out)
                {
                    NET_Profile__default_in.HasChanges = false;
                }

                return(((int)_dataparameters[1].Value & 1) != 1);
            }
            else
            {
                ConstraintExist_out = false;

                return(false);
            }
        }
Example #4
0
        /// <summary>
        /// Selects NET_Profile__default values from Database and assigns them to the appropriate DO_NET_Profile__default property.
        /// </summary>
        /// <param name="IFProfile_in">IFProfile</param>
        /// <param name="dbConnection_in">Database connection, making the use of Database Transactions possible on a sequence of operations across the same or multiple DataObjects</param>
        /// <returns>null if NET_Profile__default doesn't exists at Database</returns>
        public static SO_NET_Profile__default getObject(
            long IFProfile_in,
            DBConnection dbConnection_in
            )
        {
            SO_NET_Profile__default _output = null;

            DBConnection _connection = (dbConnection_in == null)
                                ? DO__Utilities.DBConnection_createInstance(
                DO__Utilities.DBServerType,
                DO__Utilities.DBConnectionstring,
                DO__Utilities.DBLogfile
                )
                                : dbConnection_in;

            IDbDataParameter[] _dataparameters = new IDbDataParameter[] {
                _connection.newDBDataParameter("IFProfile_", DbType.Int64, ParameterDirection.InputOutput, IFProfile_in, 0)
            };
            _connection.Execute_SQLFunction("sp0_NET_Profile__default_getObject", _dataparameters);
            if (dbConnection_in == null)
            {
                _connection.Dispose();
            }

            if (_dataparameters[0].Value != DBNull.Value)
            {
                _output = new SO_NET_Profile__default();

                if (_dataparameters[0].Value == System.DBNull.Value)
                {
                    _output.IFProfile = 0L;
                }
                else
                {
                    _output.IFProfile = (long)_dataparameters[0].Value;
                }

                _output.HasChanges = false;
                return(_output);
            }

            return(null);
        }