I am using a h2 database with clojure. I made a table and put some data in like this
(j/create-table :locations
    [:id "bigint primary key auto_increment"]
    [:title "varchar (255)"]
    [:part "clob"])
  (j/insert-records :locations
    {:title "Steven Gerrard: I'm not the new Beckham" :part "He might not have the Becks appeal -- but Steven Gerrard says he's ready to light up Hollywood in his own way..."}))
    )
   )
And then I selected the data
(defn newest []
 (database/mysql-db)
 (let [results (j/with-connection db-spec
                  (j/with-query-results res
                    ["select id, title, part from locations"]
                    (doall res)))]
    results))
And I used the data on a clostache page
<div class="container">
    <sections>
         {{#newest}}
           <p style="padding-bottom: 15px;">{{title}}<p>
           <p style="padding-bottom: 15px;">{{part}}<p>
         {{/newest}}
     </sections>
  </div>
On the page i get
Steven Gerrard: I'm not the new Beckham
clob0: 'He might not have the Becks appeal -- but Steven Gerrard says he''s ready to light up Hollywood in his own way...'
How can I remove the clob0: string that is attached to the text I have in the database? This happens even if I use text instead of clob for the part column in my database.
 
     
     
    