public List <otherSurgery> getSurgeryByid(int id) { string connectionString = @"Data Source=cdb.c1lbyzt9l8fn.us-west-2.rds.amazonaws.com,1433;" + "Initial Catalog=cis;" + "User id=sonaaaa;" + "Password=mo7senzzzz;"; SqlConnection myConnection = new SqlConnection(connectionString); myConnection.Open(); List <otherSurgery> myList = new List <otherSurgery>(); SqlCommand myCommand = new SqlCommand(); myCommand.CommandText = "Select * from otherSurgery where id = '" + id + "';"; myCommand.Connection = myConnection; SqlDataReader reader = myCommand.ExecuteReader(); if (reader.HasRows) { while (reader.Read()) { id = reader.GetInt32(0); string surgery = Convert.ToString(reader[1]); otherSurgery surg = new otherSurgery(); surg.setId(id); surg.setSurgery(surgery); myList.Add(surg); } } reader.Close(); myConnection.Close(); return(myList); }
public void insertSurgery(otherSurgery surg) { string connectionString = @"Data Source=cdb.c1lbyzt9l8fn.us-west-2.rds.amazonaws.com,1433;" + "Initial Catalog=cis;" + "User id=sonaaaa;" + "Password=mo7senzzzz;"; SqlConnection myConnection = new SqlConnection(connectionString); myConnection.Open(); SqlCommand myCommand = new SqlCommand(); myCommand.CommandText = "insert into otherSurgery (id,surgery) Values ('" + surg.getId().ToString() + "','" + surg.getSurgery() + "') ; "; myCommand.Connection = myConnection; myCommand.ExecuteNonQuery(); myConnection.Close(); }