java - mysql - select query outfile - where is file getting saved

半城伤御伤魂 提交于 2020-01-04 02:56:09

问题


connecting to a mysql database from java using jdbc. declaring a query

String query = 
                    "SELECT *"+
                    "FROM tt2"+
                    "INTO OUTFILE 'DataFormatted.csv'"+
                    "FIELDS TERMINATED BY ','"+
                    "ENCLOSED BY '\"'" +
                    "LINES TERMINATED BY '\n'";

executing query using executQuery(query).

how to change above code to save DataFormatted.csv into c drive root directory


回答1:


where is file getting saved.

In the current working directory of the MySQL server. Which one it is depends on how the MySQL server is executed and configured. Best is to change the location of the CSV file to a fixed location.

how to change above code to save DataFormatted.csv into c drive root directory

Just change 'DataFormatted.csv' by 'C:/DataFormatted.csv'.

Be aware that both Java code and the MySQL server should run at physically the same machine if you want to access the CSV file by Java as well. If they runs at physically different machines, then you'll probably look for other ways to access the CSV file, e.g. FTP'ing the generated CSV file.




回答2:


Assuming your SQL query is correct (your example is missing spaces at line break), the OUTFILE saves the File on the server.
If no path is given, it will go in the Data Directory, in a subdirectory with the user's name.
It's something like the C:\Program Files\MySQLServer\data\test for the test user.

To find out what the data directory is, use the show variables where variable_name = 'datadir' query.

To change the location of OUTFILE just use the complete path, as suggested by BalusC.




回答3:


SELECT ... INTO OUTFILE

dumps the data into a file on the MySQL server machine. If you want to create a local file on the Java client, you will need to create it yourself.



来源:https://stackoverflow.com/questions/1887530/java-mysql-select-query-outfile-where-is-file-getting-saved

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!