Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将文本文件的内容存储到数据库中。文本长度不超过 1000 个字符。我该怎么做呢?
将文本文件的内容保存到数据库中。
CLOB
java.io.Reader
String sql="INSERT INTO TableName (clobCol) VALUES (?)"; PrepareStatement ps=connection.prepareStatement(sql); ps.setClob(1,readerObject);