diff b/w DBMS & RDBMS?
Answer Posted / arindam mukherjee
There are basically two differences: -
1) The main difference between DBMS and RDBMS is that,
RDBMS follows the relational data model(given by Ted Codd
in 1970 in his research paper), which is based on the Set-
theorical concept of the mathematics.
Where as DBMS does not follow any specific data model.
2) In RDBMS we can establish logical relation between two
or more tables and by making such relations we can maintain
the integrity of the database (referential integrity), i.e
we can't insert data into the child relation if the data
does not exist in the parent relation.
Where as DBMS does not give us such facility and to
implement such things in DBMS, we have to use some other
application program.
| Is This Answer Correct ? | 44 Yes | 9 No |
Post New Answer View All Answers
how to know whether the user information or any other information which is entered in to the web is storing in secured place or non secured place?
How do you select which automation tool is best suited for you?
Hi, Below is the code that i ran on selenium RC using eclipse IDE and java coding.: package source; import org.testng.annotations.BeforeSuite; import org.testng.annotations.Test; import com.thoughtworks.selenium.*; public class parameterized extends SeleneseTestCase { private Selenium browser; public static void main(String []args) { String arr[] = new String[5]; arr[0]= "bert"; arr[1]= "regular"; arr[2]= "copyonly"; arr[3]= "doert"; arr[4]= "inter"; parameterized obj = new parameterized(); obj.setUp(); obj.login_parameterize(arr); } @BeforeSuite public void setUp() { browser = new DefaultSelenium("localhost",4444, "*chrome", "http://goolge.com"); browser.start(); browser.open("http://goolge.com"); browser.waitForPageToLoad("30000"); browser.windowMaximize(); browser.open("/"); browser.click("gb_23"); } @Test public void login_parameterize(String[] arr ) { for(int i=0;i<=5;i++) { for(int j=0;j<=2; j++) { browser.type("//input[@id='Email']", arr[i]); browser.type("//input[@id='Passwd']", arr[i]); browser.click("//input[@id='signIn']"); browser.waitForPageToLoad("30000"); } } } public void EnterValuesIntoTextField_CheckWithGetValue() throws Exception { selenium.open("http://www.essaywriter.co.uk"); assertEquals("", selenium.getValue("id=textInput")); selenium.type("id=textInput", "Text In The Field"); assertEquals("Text In The Field", selenium.getValue("id=textInput")); } } When i ran this test i got an error which says: "Method login_parameterize requires 1 parameters but 0 were supplied in the @Test annotation." Any help is much appreciated. thank Gab
IS DATA INTEGRITY TESTING AND INTEGRATION TESTING ONE AND THE SAME?IF DIFF CAN U SPECIFY THE DIFFERENCES
Can anyone tell me the correct answer of below question....it is about Bugzilla tool. When bug will find out at the time of executio where it will save or what is the location of bug??
Is ui level testing possible?
if we are using an Engine (tool)..with that how to capture data from excel sheets and how to do automation with this plz answer any body for this question.?
Tell me what is an absolute xpath?
Tell me how can you switch back from a frame?
is anybody suggest me which one is the best testing institute in ameerpet hydrabad
What is the difference between automation tools and management tools?
whether flash selenium supports to test Gaming application? like follows: identifying the images, dynamic animations, Dynamic value changes field and win conditions etcc..,
How can the user get a text of a web element?
Give some examples for performance test tools?
I want a code for a following item in TSL Language. Look up a person in database, If not found, add person to the database.