Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Autonumbering

Author  Topic 

AskSQLTeam
Ask SQLTeam Question

0 Posts

Posted - 2005-04-07 : 08:02:25
Wale Odusanya writes "I greatly appreciate you contributions to the programming world.
Please How can i programmatically move picture files that are save by default on my C: drive at the snap a digital camera to a new folder in my C: DRIVE and at the same click save the file name in a table in my database."

AndrewMurphy
Master Smack Fu Yak Hacker

2916 Posts

Posted - 2005-04-07 : 08:58:13
???Interesting...BUT very brief new application outline....Is there a matchbox around somewhere?
And what has this got to do with the SQL topic of Autonumbering?

Good luck with the search for help!!....but you might consider providing a more detailed specification of the problem.
Go to Top of Page

Michael Valentine Jones
Yak DBA Kernel (pronounced Colonel)

7020 Posts

Posted - 2005-04-07 : 17:56:42
Did you try something like this?

On Event My_Camera.Shutter_Click
begin

create folder MY_Computer.C.My_New_folder

Insert into MY_Computer.C.My_New_folder (File)
Select
Image.File
from
My_Camera.Shutter_Click

Insert into Image_Paths ( Name, Path)
Select
Name
Path
from
MY_Computer.C.My_New_folder

end




CODO ERGO SUM
Go to Top of Page
   

- Advertisement -