Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to make entry in database from a folder

Status
Not open for further replies.

aneesholv

Advanced Member level 4
Joined
May 23, 2011
Messages
119
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,296
Location
India ,kerala
Activity points
2,118
Hi

HOW TO make an entry of a audio file details to SQL database that is droped in a folder . That is whenever I drop an audio file in this folder the detail of this file need to insert to database automatically.How can I do this ?

regards
Aneesh
 

You need an application[software] or [software] tool or such

Perhaps you could give more details.................

BY SQL database, do you really mean SQL Server?
 
Last edited:
i suggest looking for code that will do that for MySQL then altering the code to work with SQL Server
 

You have to edit the folder to make entry in it.
 

You need to write a program that will watch the folder for changes then use that to trigger
your database update.

If you are a windoze or linux user (extrapolating from the word "folder")
If you are not very experienced you might find the easiest way to learn to do this
would be to download codetyphon and install this. This will give you a rad
environment and tons of components and software support via the lazarus/fpc forum.
I suggest you dont get talked into using "newer" databases by the lazarus people though.
Stick to mysql.
 

On a more general theme, the request is for how to automatically detect the presence of a new file when dropped in a folder. There is no 'automatic' way to do this but there are two ways it can be coded:

1. Keep a list of files and compare it to the ones in the folder. If one is not in the list, add it to the database then update the list to include it.
2. Keep a record of the timestamp (creation date/time) of the latest file in the list. Keep checking for a later timestamp which would tell you the file was added more recently than when last checked.

The first method might involve long lists but maybe these are available in the database already. The second method is quicker beause only one file is checked at a time and only one variable is compared but might be confused if a file is added with an incorrect timestamp.

Brian.
 
u can get it from internet just type the models name of ur bluetooth
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top