Welcome Guest ( Log In | Register )



 
Reply to this topicStart new topic
> Want Help In Connecting DB To Java
amit nigam
post May 1 2006, 07:24 PM
Post #1


Newbie [ Level 1 ]
Group Icon

Group: Members
Posts: 1
Joined: 28-April 06
Member No.: 13,077



Actually i know how to create an independent database and how to update it manually.

But i just want to know that how can i make that update thing automatically. Like suppose if i give somekind of username and password to members of my site and i wish to have them updated , like addition , deletion or changes in password, to be automatic how can i do that.

i have a rough idea that it can be done with the help of Java and jdbc but i don't know exactly. I m good at programming languages C and Java.
Go to the top of the page
 
+Quote Post
yordan
post May 2 2006, 09:38 AM
Post #2


Way Out Of Control - You need a life :)
Group Icon

Group: [MODERATOR]
Posts: 2,045
Joined: 16-August 05
Member No.: 7,896



QUOTE
I m good at programming languages C and Java.

Yes, C language is the best way, the most performing if you have a lot of users. However, are you familiar with the embedded C for your database ?
By the way, which database manager are you using ? Is it a mysql database ?
I guess that most of people here use mysql with php, so they will suggest you to use php. Maybe the most efficient thing is look aroung this forum or make a google search for php sample scripts, understand the examples and adapt them to your own purposes.
Regards
Yordan
Go to the top of the page
 
+Quote Post
snutz411
post May 3 2006, 03:57 PM
Post #3


Advanced Member
Group Icon

Group: Members
Posts: 105
Joined: 22-December 05
Member No.: 10,229



QUOTE(amit nigam @ May 1 2006, 03:24 PM) *

Actually i know how to create an independent database and how to update it manually.

But i just want to know that how can i make that update thing automatically. Like suppose if i give somekind of username and password to members of my site and i wish to have them updated , like addition , deletion or changes in password, to be automatic how can i do that.

i have a rough idea that it can be done with the help of Java and jdbc but i don't know exactly. I m good at programming languages C and Java.



Check out this site for examples on how to set up the ODBC/JDBC connection. It's pretty simple to do with the help of examples.

http://javaalmanac.com/egs/java.sql/pkg.html
Go to the top of the page
 
+Quote Post
vhortex
post May 19 2006, 06:52 PM
Post #4


Guilty Until Proven Innocent
Group Icon

Group: Members
Posts: 372
Joined: 13-April 05
Member No.: 3,937



QUOTE(amit nigam @ May 2 2006, 03:24 AM) *

Actually i know how to create an independent database and how to update it manually.

But i just want to know that how can i make that update thing automatically. Like suppose if i give somekind of username and password to members of my site and i wish to have them updated , like addition , deletion or changes in password, to be automatic how can i do that.

i have a rough idea that it can be done with the help of Java and jdbc but i don't know exactly. I m good at programming languages C and Java.


I dont know exactly if i got your question right.. It is kind of not very clear..

for automation, here is what i do..

--

this is on assumption that you have a host with mySQL 5 in it or that you can upgrade the mySQL server on the site/host.

I create all needed database tables and coloumns then I write a stored procedure to be inserted to the mySQL server [Oracle style]. Then when I need to do some updates, I just call the stored procedure, the function of the stored procedure is base on your likings.

My best setup is also to set a trigger command in the mySQL like a trigger of database read. On a read command [SELECT command for the database], i will just call a stored procedure found also inside the database that will update the read count column for the database I am using.

eg.
table data
id INT
data varchar
readcount int

trigger SELECT

stored procedure sub updatecount[.....]
{....}


when a user use SELECT command here to the data , my read triiger will fire off
then the trigger will call this stored procedure updatecount and the readcount will be updated.

This post has been edited by vhortex: May 19 2006, 06:53 PM
Go to the top of the page
 
+Quote Post
yordan
post May 19 2006, 09:33 PM
Post #5


Way Out Of Control - You need a life :)
Group Icon

Group: [MODERATOR]
Posts: 2,045
Joined: 16-August 05
Member No.: 7,896



QUOTE

Thanks for the link : their topic is really complete (including how to download the drivers), clear and easy with the examples.
Go to the top of the page
 
+Quote Post
Ola Daniel
post Jun 15 2006, 10:04 PM
Post #6


Newbie [ Level 2 ]
Group Icon

Group: Members
Posts: 15
Joined: 15-June 06
Member No.: 13,954



It sounds to me like you need to do some homework on how you want to get this done. There are many many ways to get this done. I would resommend using Java, its the easiest of them all.

Using Java you have several options.

1. Use JDBC - very very simple especially if you are used to SQL queries and so on.

2. Use Persistence Objects - Advanced stuff. For Example EJBs, Hibernate e.t.c
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. Connecting To A Remote Database(9)


 



- Lo-Fi Version Time is now: 14th October 2008 - 01:08 PM