hi everyone!!..am working with java project concern chat room...am not much good in java so can anyone help me how to start code because have prepared the database with 3 table(registration(user_id_pk),conversation(c_id_pk),conversation_reply(r_id_pk))...so am asking for assistance please.
You've create a database table. You could write the database access layer as the next step. What methods do you need? Adding data to the database and selecting data from the database spring to mind. Try using JDBC to write some code. Or ask a more specific question here.
have already put the data to database and what are need is query which will help me to list available inbox or a complete code for listing the inbox...And below is my table and attributes.
Table for registration
What seems to be missing is a field that keeps track of which messages have already been seen by the user - maybe a boolean in the conversation_reply table.
I don't understand why the conversation table is necessary. Could there be more than one conversation between two users? Not even Skype has that. You could have a "from" and a "to" userID FK in the message table instead.
...or a complete code for listing the inbox...
No, giving out code is not how this site works. But we'll help you write the code yourself.