Click here to Skip to main content
15,886,137 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a folder inside a folder and in that folder i have files i want access the files and handle that file name using mysql procedure is there any way to do that.can i create directories using mysql function? suggest mi if yes.
Posted

1 solution

No, you can't.
MySQL[^] is a database management system residing in data layer of the n-tier architecture[^].
File operations on servers can only be handled by server-side scripts residing at the business layer.
 
Share this answer
 
v2
Comments
sushma14 17-Jan-15 5:02am    
cant i even access name of files to insert into table or to create table of that name?
Peter Leow 17-Jan-15 5:10am    
server-side script at the business layer will perform the file operations such as accessing files, then passing the file names together with instructions (in the form of SQL language) to the MySQL database. MySQL will then perform the database related operation such as retrieval, insertion, or update according to the data (file names) and instructions from the server-side script.
sushma14 17-Jan-15 5:19am    
ok so its totaly not posible in mysql procedure
Peter Leow 17-Jan-15 5:43am    
No.
sushma14 17-Jan-15 5:53am    
ok thank you.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900