Thursday, November 28, 2019

Art Gallery Project essays

Art Gallery Project essays For the Arts group, we will present an artist (or genre) for about 30minutes to introduce the background and influences as well as techniques employed by a particular artist. The remaining hour will be devoted to each student creating their own representation of what we presented. For example, each student will create their own Van Gogh on the 1st of November. We will save all of their artwork throughout the 6 weeks. After the program has ended, we will have some sort of art gallery reception. The time/location is still up in the air because we may be able to use the caf that Kristen works at. If have the gallery at the caf, we are going to invite the parents and family and possibly even sell their art work. If not, we will probably have it the following Monday after the program completes during the after-school program hours. We are planning on having juice and fancy hors devours to create a real art gallery feel.For the Arts group, we will present an artist (or genre) for a bout 30minutes to introduce the background and influences as well as techniques employed by a particular artist. The remaining hour will be devoted to each student creating their own representation of what we presented. For example, each student will create their own Van Gogh on the 1st of November. We will save all of their artwork throughout the 6 weeks. After the program has ended, we will have some sort of art gallery reception. The time/location is still up in the air because we may be able to use the caf that Kristen works at. If have the gallery at the caf, we are going to invite the parents and family and possibly even sell their art work. If not, we will probably have it the following Monday after the program completes during the after-school program hours. We are planning on having juice and fancy hors devours to create a real art gallery feel. ...

Monday, November 25, 2019

Using Delphi Queries With ADO

Using Delphi Queries With ADO The TADOQuery component provides Delphi developers the ability to fetch data from one or multiple tables from an ADO database using SQL. These SQL statements can either be DDL (Data Definition Language) statements such as CREATE TABLE, ALTER INDEX, and so forth, or they can be DML (Data Manipulation Language) statements, such as SELECT, UPDATE, and DELETE. The most common statement, however, is the SELECT statement, which produces a view similar to that available using a Table component. Note: even though executing commands using the ADOQuery component is possible, the  ADOCommandcomponent is more appropriate for this purpose. It is most often used to execute DDL commands or to execute a stored procedure (even though you should use theTADOStoredProc  for such tasks) that does not return a result set. The SQL used in a ADOQuery component must be acceptable to the ADO driver in use. In other words you should be familiar with the SQL writing differences between, for example, MS Access and MS SQL. As when working with the ADOTable component, the data in a database is accessed using a data store connection established by the ADOQuery component using itsConnectionString  property or through a separate ADOConnection component specified in the  Connectionproperty. To make a Delphi form capable of retrieving the data from an Access database with the ADOQuery component simply drop all the related data-access and data-aware components on it and make a link as described in the previous chapters of this course. The data-access components: DataSource, ADOConnection along with ADOQuery (instead of the ADOTable) and one data-aware component like DBGrid is all we need.  As already explained, by using the Object Inspector set the link between those components as follows: DBGrid1.DataSource DataSource1 DataSource1.DataSet ADOQuery1 ADOQuery1.Connection ADOConnection1 //build the ConnectionString ADOConnection1.ConnectionString ... ADOConnection1.LoginPrompt False Doing a SQL query The TADOQuery component doesnt have a  TableNameproperty as the TADOTable does. TADOQuery has a property (TStrings) called  SQL  which is used to store the SQL statement. You can set the SQL propertys value with the Object Inspector at design time or through code at runtime. At design-time, invoke the property editor for the SQL property by clicking the ellipsis button in the Object Inspector.  Type the following SQL statement: SELECT * FROM Authors. The SQL statement can be executed in one of two ways, depending on the type of the statement. The Data Definition Language statements are generally executed with the  ExecSQL  method. For example to delete a specific record from a specific table you could write a DELETE DDL statement and run the query with the ExecSQL method.The (ordinary) SQL statements are executed by setting the  TADOQuery.Active  property to  True  or by calling theOpen  method (essentialy the same). This approach is similar to retrieving a table data with the TADOTable component. At run-time, the SQL statement in the SQL property can be used as any StringList object: with  ADOQuery1  do begin  Close; SQL.Clear; SQL.Add:SELECT * FROM Authors SQL.Add:ORDER BY authorname DESC Open;   end; The above code, at run-time, closes the dataset, empties the SQL string in the SQL property, assigns a new SQL command and activates the dataset by calling the Open method. Note that obviously creating a persistent list of field objects for an ADOQuery component does not make sense. The next time you call the Open method the SQL can be so different that the whole set of filed names (and types) may change. Of course, this is not the case if we are using ADOQuery to fetch the rows from just one table with the constant set of fields - and the resulting set depends on the WHERE part of the SQL statement. Dynamic Queries One of the great properties of the TADOQuery components is the  Params  property. A parameterized query is one that permits flexible row/column selection using a parameter in the WHERE clause of a SQL statement. The Params property allows replacable parameters in the predefined SQL statement. A parameter is a placeholder for a value in the WHERE clause, defined just before the query is opened. To specify a parameter in a query, use a colon (:) preceding a parameter name.  At design-time use the Object Inspector to set the SQL property as follows: ADOQuery1.SQL : SELECT * FROM Applications WHERE type    :apptype When you close the SQL editor window open the Parameters window by clicking the ellipsis button in the Object Inspector. The parameter in the preceding SQL statement is namedapptype. We can set the values of the parameters in the Params collection at design time via the Parameters dialog box, but most of the time we will be changing the parameters at runtime. The Parameters dialog can be used to specify the datatypes and default values of parameters used in a query. At run-time, the parameters can be changed and the query re-executed to refresh the data. In order to execute a parameterized query, it is necessary to supply a value for each parameter prior to the execution of the query. To modify the parameter value, we use either the Params property or ParamByName method. For example, given the SQL statement as above, at run-time we could use the following code: with ADOQuery1 do begin Close; SQL.Clear; SQL.Add(SELECT * FROM Applications WHERE type :apptype); ParamByName(apptype).Value:multimedia; Open; end; As like when working with the ADOTable component the ADOQuery returns a set or records from a table (or two or more). Navigating through a dataset is done with the same set of methods as described in the Behind data in datasets chapter. Navigating and Editing the Query In general ADOQuery component should not be used when editing takes place. The SQL based queries are mostly used for reporting purposes. If your query returns a result set, it is sometimes possible to edit the returned dataset. The result set must contain records from a single table and it must not use any SQL aggregate functions.  Editing  of a dataset returned by the ADOQuery is the same as editing the ADOTAbles dataset. Example To see some ADOQuery action well code a small example. Lets make a query that can be used to fetch the rows from various tables in a database. To show the list of all the tables in a database we can use the  GetTableNamesmethod of the  ADOConnection  component. The GetTableNames in the OnCreate event of the form fills the ComboBox with the table names and the Button is used to close the query and to recreate it to retrieve the records from a picked table. The () event handlers should look like: procedure TForm1.FormCreate(Sender: TObject); begin ADOConnection1.GetTableNames(ComboBox1.Items); end; procedure TForm1.Button1Click(Sender: TObject); var tblname : string; begin if ComboBox1.ItemIndex then Exit; tblname : ComboBox1.Items[ComboBox1.ItemIndex]; with ADOQuery1 do begin Close; SQL.Text : SELECT * FROM tblname; Open; end; end; Note that all this can be done by using the ADOTable and its TableName property.

Thursday, November 21, 2019

Wal-Mart Information Technology Company Analysis Research Paper

Wal-Mart Information Technology Company Analysis - Research Paper Example Wal-Mart owes much of its success to the early adoption of an Information Technology as compared to its competitors. The store has continually evolved to adapt to changing market needs through enhancing its Information Technology strategy. This has given it a competitive edge over other retailers by enabling it to price its products more competitively. Information Technology use by Wal-Mart continues to enhance its market leadership and dominance. 2.0 Information Technology characteristics and dynamics of Wal-Mart Despite of Wal-Mart’s large size, it has one centralized information system that is developed internally giving it much advantage in operations that enables it price its products competitively in comparison to other retailers. In 95% of Wal-Mart’s Information Technology endeavors, much of the development is done by internal staff, managing programming and process engineering and not relying on commercial software or outsourcing. The company has also been able to maintain its Information Technology budget at a lower rate than its market competitors. These costs do not grow at a similar rate to sales despite the entire Wal-Mart business model relying heavily on Information Technology. Wal-Mart as a whole relies on information technology to attain its business objectives and meet the needs of its clients (Sullivan, 2004). The information system at Wal-Mart is a centralized system that manages supplier and consumer data all in one avenue. The centralized system analyzes data from Wal-Mart’s Discount stores, Supercenters, Sam’s clubs, Neighborhood markets and world wide stores from one location. The Information Technology staffs concentrate on building software for all its systems, both at home and in international markets. As a result, any new code affects the global operations of the entire retail store. This leverages the Information technology efforts resulting into massive savings in investments in the department (Sullivan, 2004). Wal-Mart’s system enables it capture all of a day’s sales and product information in real time from all of its global operations. This information is instrumental in making timely decisions as regards sales of particular products. The information is also used by buyers to make buy decisions that eventually affect Wal-Mart’s sales. Availing real time data is one of Wal-Mart’s Information System’s hallmarks. This information enables decision makers at Wal-Mart to act fast and decisively and to take immediate corrective measures where a problem is noticed. This has worked to enhance Wal-Mart’s market leadership over the competition (Sullivan, 2004). Wal-Mart also seeks to synchronize its online operations as well. This it will be achieved through the synchronization of its online sites such as walmart.com, samsclub.com, asda.com, walmartmexico.com.mx. Such synchronization will result in similar efficiencies as those experienced through the centralization of the brick and mortar stores operational information. The platform to host this system will be scalable, Java based and running on IBM’s WebSphere and Informix database. The aim of this is to achieve efficiencies in growth and enhance scalability with the ultimate goal of cost effectiveness that translates to more affordable products for the final consumers enhancing its market leadership (Sullivan, 2004). One of the more identifiable uses of Information Technology by Wal-Mart is the use of radio frequency identification in tracking stocks.

Wednesday, November 20, 2019

Management and Organisational Behavior Essay Example | Topics and Well Written Essays - 1500 words - 1

Management and Organisational Behavior - Essay Example The other motivation I got in another internship was being given token gifts and allowances even though it was a non-paying internship. The allowances were not much but they meant everything to me and were a sign of the company appreciating my work. My current workplace where I have worked the longest motivates its employees through providing training to the best performing employees as well as having paid vacation leaves where the company provides even vacation packages for those with families which are fully paid. The employees never willingly leave the company and they have made the company excel in terms of increased profitability as well as gain a competitive advantage in the industry. Herzberg Two factor theory explains very well about motivation and the factors that can motivate the employees. According to the theory, there are two types of factors in any organization and these are the hygienic and the motivational factors. The hygienic factors are those employees cannot do without as their lack leads to dissatisfaction and their presence motivation. They include factors such as salaries, interpersonal relations as well as good working conditions (Brooks, 2010). The motivational factors, on the other hand, are rarely present in an organization but their presence satisfies and motivates the employees immensely. These factors are mostly ignored in many organizations but if used can bring a great difference in terms of performance increment. They include factors such as awards, recognition, and responsibility among others. The other motivational theory is the Maslow’s hierarchy of needs theory. This theory has five levels which individuals have to pass before they completely become self-actualized. The completion of each of these levels is a motivation to move to the next level. These levels of needs

Monday, November 18, 2019

Health Service Administration Essay Example | Topics and Well Written Essays - 1000 words

Health Service Administration - Essay Example The success of HSA can be determined from the fact that since January 2004, more than 3 million Americans have enrolled in HSA, which are helping make health insurance more affordable for not only for middle class individuals but also for those who are unable to afford quality health supervision. (Whitehouse) According to Longman, the role of economics in health care in Bush's era has allowed Americans to avoid frequent skipping from one health-care plan to the next, with all the discontinuities in care and record keeping and disincentives to preventative care that this entails. (Longman, Jan-Feb 2005) Economic Organization of managed care strategies offer ways to reduce some of the excesses, although not necessarily in consonance with measured health needs. Combining corporate organization with financial management, managed care has characterized a business model of medicine. What one can expect more from economical contribution that has reduced health needs in many cases and suffered through income loss that is usually shared between the patient and society Psychology has also contributed towards health administration while taking in consideration those matters that are influential and carry risk for development of disease. Research has shown that psychology has helped alleviate the effects of disorders in our community in many ways. For example, after conducting a detailed research on the patient's behaviour, it has developed various ways to stop smoking. One of the models of smoking developed with the help of psychology is the nicotine regulation model, which assess different patients accordingly. Psychology has helped developed models, which differs from the traditional theories by giving heavy emphasis to process that means, it focuses on the continual interactions among the variables active during behavioral episodes to prevent and control illness to the updating and transitions that occur over time. Psychological contribution also persists in models, which deals with changes in the representation of health threats from that of an acute to that of a chronic threat, and the need to revise procedures, outcome expectations, and outcome appraisals as a function of changes in the illness representation. (Baum et al, 2001, p. 56) Health belief variables, such as vulnerability and severity beliefs and the perceived costs and benefits of action, are beliefs at a moment. Neither these concepts nor those of intention, perceived norms, or attitudes suggest ways of engaging and changing individual health cognition. Psychological factors have contributed as taking the responsibility for identifying the differences between the health and psychological models, how to benefit a patient by combining these models as therapies and how to self-regulate health problems. The best example of psychological contribution to health is the specification of medical and public health authorities towards stopping smoking, using safety belts, reducing dietary fat, etc. Sociology Contribution in Health Care Contemporary sociology contribution can be acknowledged

Friday, November 15, 2019

Should Nurses Be Allowed to Diagnose Patients?

Should Nurses Be Allowed to Diagnose Patients? Nowadays, the more controversial is the question as whether nurses should be allowed to diagnose patients? This issue is highly significant because nurses are equally responsible for patient care as do doctors and their knowledge can contribute towards appropriate diagnosis. However, Croasdale (2008) claimed that nurses have limited diagnosing skills. Here the essential point on which I differ is that, today nurses are more knowledgeable and competent health care professionals. Thats why they have potentials to diagnose patients. Thus, I propose that as nurses possess great potentials so they should be allowed to diagnose patients. Opponents of my view argued that nurses are considered subordinate to doctors. Sullivan Decker (2008) stated that Relationship of physician and nurse has been that of superior and subordinate. This in turn means that, nurses are supposed to adhere to doctors order. This prestige comes from the point that only doctors are allowed to diagnose. Godlee (2008) contends that, diagnosis is almost the only skill that defines doctor. Additionally, history taking and assessment in logical fashion is the key principle to make pertinent diagnosis. For which doctors are trained and knowledgeable. Furthermore, their education is more advanced than nurses, which help them to achieve this task. Thus, it can be affirm that nurses are responsible for caring patients while doctors cure them. Whereas, I strongly believe that, nurses are not subordinate to doctor. In fact, both are independent professionals who collaborate to achieve similar goals. As Murphy (2004) clearly pointed out that nursing is an independent profession with a unique body of knowledge and not simply a subcategory of medicine. In reality, nurses in their everyday practice also implement a logical process for history taking and assessment which ultimately guides diagnosis. For example, since the day nurses step in this profession, they are practicing history taking, interviewing and assessment skills. Moreover, nursing education has also expanded now and advance concepts are part of their curriculum. Today, nurses are also actively participating in researches to make their practice evidence based. Furthermore, the circle of nursing education does not complete at diploma or baccalaureate level while, career in nursing is flourishing day by day and nurses are moving ahead towards specialization. Therefore, on one hand, care is the core component of nursing. While on the other hand, it provides them the means to cure as well. Fox (2010) is the supporter of my opinion who asserted that Nurses can handle much of th e strain that healthcare reform will place on doctors and should be given the authority to take on more medical duties It is generally accepted that, people are more satisfied with doctors. This is because of the worldwide recognition associated with this profession. Doctors are the fundamental provider of health care. Moreover, it has been observed that in our society people consider doctors as superior to them. And in case of illness they immediately rush to doctor. Likewise, during my experience at emergency department, I have seen that as soon as patients reach, they want doctor to see them first. And many of them seemed satisfied after that. This was the reason, allowing nurses to triage patients was questionable. Hence, it is true to say that patients trust doctors and reveal more history to them comparatively to nurses. However, relating to these arguments is the critique that patients are more satisfied with nurses. Yet, there is no denying that doctors are recognized worldwide but, the point that profession of nursing is also globally renowned cannot be overlooked. People consider nurses as core member of health care team. As Laurence (2004) supported that Nurses are more popular than doctors as frontline providers of medical care. Besides that, nurses stay with patients for a longer period of time. Hence, patients trust and build rapport with them. Payne (2009) explains that Nursing was one of the few professions to gain an increase in public trustà ¢Ã¢â€š ¬Ã‚ ¦ Doctors saw a drop of 4% in public confidence in the last two years. This clearly shows that, patients trust nurses more than doctors. This allows patients to disclose even those details to nurses which they hesitate to communicate to doctors in short meeting. Thus, it provides nurses an opportunity to identify patients concerns and make appropriate diagnosis. As far as triage nursing is concerned, initially it was questionable but once implemented, it became successful than the former. This example clearly illustrates that nurses with their capabilities can satisfy patients. Hence, nurses can become successf ul if they are allowed to diagnose. Cernik Ferns (2006) claimed that doctors are the ultimate decision makers and patients are their legal responsibility. According to this argument, the responsibility to diagnose comes under doctors mandate because they are licensure for that. Therefore, they are held legally responsible as any error or an act of negligence can lead to legal implications for them. Nurses, so this argument goes, are also legally responsible and answerable for their actions in court of law. For instance, if the patient dies due to wrong diagnose, so it is not only a doctor but the organization is sued and in such circumstances, doctors and nurses both are liable. Moreover, doctors are licensure to diagnose but the same is true for nurses in particular that, in UK and USA, there are nurse practitioners who are allowed to diagnose independently and treat patients. Considering the above arguments, is the point that competent nurses by virtue of an essential member of health care team should be allowed to diagnose patients. As, they are regarded as the backbone of health care industry their knowledge can benefit patient to a greater extent. Nurses, being good decision maker based on their knowledge and experience as well as legally responsible health care professionals can bring positive outcome in health care. In my opinion, if nurses are prohibited to diagnose, then their capabilities would get suppressed. As well as, this can predispose to increase chances of misdiagnoses and eventually errors will arise. Hence, society at large can benefit if the nurses are empowered for that. Word count: 1005

Wednesday, November 13, 2019

Henrik Ibsens A Doll’s House :: A Dolls House Essays

Henrik Ibsen's A Doll’s House In A Doll’s House, Henrik Ibsen reveals how society and authority hinders the development of individuality. By examining how Nora’s father treated her, the way Nora’s husband talked to her, a woman’s social expectations, and the social status of women, Ibsen sets forth the image of a stiffed woman, trapped in an unhappy marriage. Nora’s father treated her as if she was just a little play doll. He belittled her and treated Nora like a baby. Referencing to her father, Nora illustrates this by saying, â€Å" . . . He called me his little doll, and he played with me just the way I played with my dolls. Then I came to live in your house . . . I was passed from Papa’s hands to yours,†(Act III 1120). The way Torvald, Nora’s husband, talked to her showed how he degraded and belittled Nora. He talked to Nora as if she was inferior to him. He implied that he was a better person due to his social status. In Act III of A Doll’s House, Torvald shows his vulgar and subservient manner towards Nora by saying, â€Å"Oh, you think and talk like a stupid child,†(Act III 1123). A woman’s social expectations were to stay at home, and conceive the offspring. It was thought that women had to depend on men for everything. What ever the woman wanted to do, had to be approved by the male spouse. â€Å"Oh, I wish I’d inherited more of Papa’s qualities,† exemplifies Nora’s urge to become more powerful (Act I 1074). At that time, women’s status in society was a step below those of men. Women could not vote, open their own bank account, or have a management position. In some extreme cases of the women’s low status, they were told to marry the man whom their parents told them to marry. Torvald depicts how men were thought to be higher than women are by claiming, â€Å" . . . but no man can be expected to sacrifice his honor, even for the person he loves,†(Act III 1123).