我在java中有一个字符串,但数据库中的数据类型是Clob。我如何从String获得Clob?
答案 0 :(得分:7)
clob.setString(position, string)
writes a String to a Clob object。
答案 1 :(得分:3)
new javax.sql.rowset.serial.SerialClob(source.toCharArray())
答案 2 :(得分:0)
要将任何字符串(小字符串或转换为字符串的大JSON)转换为CLOB,我们需要首先初始化CLOB:
con
<?php
namespace App\Http\Controllers;
use\App\Todo;
use Illuminate\Http\Request;
class TodosController extends Controller {
public function index()
{
$todos = Todo::all();
return view('todos')->with('todos', '$todos');
}
}
Connection