[#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:
parent
53b5c70fc1
commit
cb307f0fd7
@ -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>
|
||||
|
||||
@ -811,7 +811,7 @@ public class Main {
|
||||
conn = DriverManager.getConnection(url, userName, password);
|
||||
|
||||
Factory create = new Factory(conn, SQLDialect.MYSQL);
|
||||
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);
|
||||
@ -9191,4 +9191,4 @@ SERVER = new RemoteDebuggerServer(DEBUGGER_PORT);</java>
|
||||
</section>
|
||||
</sections>
|
||||
</section>
|
||||
</manual>
|
||||
</manual>
|
||||
|
||||
9194
jOOQ-website/src/main/resources/manual-2.7.xml
Normal file
9194
jOOQ-website/src/main/resources/manual-2.7.xml
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user