is that compulsory to have Primarykey-forignkey for joints
(outer inner,equal)

Answers were Sorted based on User's Feedback



is that compulsory to have Primarykey-forignkey for joints (outer inner,equal)..

Answer / guest

yes, for using joint the Primarykey-forignkey of the class
are needed to retrive the data without data-inconsistance

Is This Answer Correct ?    6 Yes 2 No

is that compulsory to have Primarykey-forignkey for joints (outer inner,equal)..

Answer / balakrishna

Primarykye-Foreign key relation ships are not compulsory to
join two table, but it is recommended to have.

Is This Answer Correct ?    5 Yes 1 No

Post New Answer

More JDBC Interview Questions

What is @entity in java?

0 Answers  


What is jdbc and its advantages?

0 Answers  


dear friends I have made connection with SQLSERVER where the following code is compiling properly but giving error at the runtime . I think error in this line where i am sending the value through string Connection connection = DriverManager.getConnection ( "jdbc:microsoft:sqlserver://localhost:1433","sa",""); import java.sql.*; //import mssqlserver.*; public class TestSQLCON { public TestSQLCON() throws Exception { // Get connection DriverManager.registerDriver(new com.microsoft.jdbc.sqlserver.SQLServerDriver()); System.out.println(); System.out.println("Successfully connected one"); System.out.println(); Connection connection = DriverManager.getConnection ( "jdbc:microsoft:sqlserver://localhost:1433","sa",""); if (connection != null) { System.out.println(); System.out.println("Successfully connected"); System.out.println(); // Meta data DatabaseMetaData meta = connection.getMetaData(); System.out.println("\nDriver Information"); System.out.println("Driver Name: " + meta.getDriverName()); System.out.println("Driver Version: " + meta.getDriverVersion()); System.out.println("\nDatabase Information "); System.out.println("Database Name: " + meta.getDatabaseProductName()); System.out.println("Database Version: "+ meta.getDatabaseProductVersion()); } } public static void main (String args[]) throws Exception { TestSQLCON test = new TestSQLCON(); } } so please help me

2 Answers  


What is hbm xml?

0 Answers  


What is Statement and PreparedStatement? whatz the difference?

2 Answers  






Give a way to check that all result sets have bin accessed and update counts are generated by execute method.

0 Answers  


What is serialization and deserialization in java programming?

0 Answers  


Explain jdbc savepoint?

0 Answers  


Is jdbc object oriented?

0 Answers  


Does the JDBC-ODBC Bridge work with Microsoft J++?

0 Answers  


How can you sort dates?

1 Answers  


What do you mean by odbc?

0 Answers  


Categories