I have started a database application just like an address book, however I would like to have the user to upload a picture that will show when the user click save. Any idea?
Thanks alot
I have started a database application just like an address book, however I would like to have the user to upload a picture that will show when the user click save. Any idea?
Thanks alot
Hello London-G,
from the database aspect, you would need a column (of data type BLOB - in oracle, don't know if this applies for other databases) on one of your tables (perharps personInfo) that would hold the image information. I am not very conversant with Java, so i don't know how you would link that. You could google for more info regarding that.
As for the table, you would prob have something like this;
personID number, (pk)
firstName varchar2(30)
lastName varchar2(30)
phoneNo varchar2(30) //this can also be the pk since no two persons have the same phone no
address varchar(450)
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.