简体   繁体   中英

Stored procedure

  String path= "Translator.txt";
       String file=" LOAD DATA LOCAL INFILE '" + path +
                            "' INTO TABLE Translator " +
                            " FIELDS TERMINATED BY \',\' ENCLOSED BY \'\"'" +
                            " LINES TERMINATED BY \'\\n\'";

Is the following code above, a stored procedure?

Store procedure is like which inputs some values and return data back , Or some insert , update , delete operations done by it. So yes there will be a query for store procedure.

This is a simple string statement.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM