2016-11-12 70 views
1

這可能是一個非常基本的問題,但stackoverflow如何存儲用戶發佈的代碼片段?每個片段只是一個帶有文本字段和userid + postid的數據庫條目?stackoverflow如何存儲代碼片段

+0

好問題,但這屬於元。除非你對一般人在任何網站上如何做到這一點有一個普遍的疑問。 –

+0

我正在研究一個類似的項目,所以我想知道網站如何做到這一點。 – CoconutFred

回答

0

我查看了不同Stack Overflow question的HTML代碼。

<p>I'm making a program in java that makes queries into SQL and show the result in a jtable, my problem is if i do Insert, delete or update i want my jtable to show the sql table that was modified, is there any function for that? 
This is my method to execute the query:</p> 

<pre><code> public void executequery() { 

      try { 
       String userQuery = Query.getText(); 
       Statement statement; 
       statement = conn.createStatement(); 
       statement.execute(userQuery); 
       ResultSet rs = statement.executeQuery(userQuery); 
       //in case of a instert, delete or update i want to show 
       //the modified sql on my jtable 
       table.setModel(DbUtils.resultSetToTableModel(rs)); 
       rs.close(); 
       statement.close(); 
      } catch (SQLException e) { 
       // TODO Auto-generated catch block 
       e.printStackTrace(); 
      } 

     } 
</code></pre> 

您在這裏有幾個選擇。

您可以將問題ID +用戶ID作爲關鍵字保存在數據庫中的HTML +文本。

您可以使用類型指示器分別保存文本和代碼,並使用指示器來創建HTML。

無論哪種方式都行。