[#2219] Double-escaping in manual's tutorial example code, Step 6

Conflicts:
	jOOQ-website/src/main/resources/manual-2.7.xml
This commit is contained in:
Lukas Eder 2013-02-20 15:05:51 +01:00
parent 53b5c70fc1
commit cb307f0fd7
3 changed files with 9198 additions and 4 deletions

View File

@ -774,7 +774,7 @@ public class Main {
conn = DriverManager.getConnection(url, userName, password);
GuestbookFactory create = new GuestbookFactory(conn);
Result<Record> result = create.select().from(POSTS).fetch();
Result<Record> result = create.select().from(POSTS).fetch();
for (Record r : result) {
Long id = r.getValue(POSTS.ID);
@ -8655,4 +8655,4 @@ SERVER = new RemoteDebuggerServer(DEBUGGER_PORT);</java>
</section>
</sections>
</section>
</manual>
</manual>

View File

@ -811,7 +811,7 @@ public class Main {
conn = DriverManager.getConnection(url, userName, password);
Factory create = new Factory(conn, SQLDialect.MYSQL);
Result&lt;Record&gt; result = create.select().from(POSTS).fetch();
Result<Record> result = create.select().from(POSTS).fetch();
for (Record r : result) {
Long id = r.getValue(POSTS.ID);
@ -9191,4 +9191,4 @@ SERVER = new RemoteDebuggerServer(DEBUGGER_PORT);</java>
</section>
</sections>
</section>
</manual>
</manual>

File diff suppressed because it is too large Load Diff