Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
d4005861
Commit
d4005861
authored
Oct 17, 2014
by
Steve Müller
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #695 from fabschurt/fix-doc-typo
[Documentation] Add missing quotes at the end of literal strings
parents
50557fc0
dde324c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
data-retrieval-and-manipulation.rst
docs/en/reference/data-retrieval-and-manipulation.rst
+5
-5
No files found.
docs/en/reference/data-retrieval-and-manipulation.rst
View file @
d4005861
...
...
@@ -307,7 +307,7 @@ Prepare a given SQL statement and return the
array(
0 => array(
'username' => 'jwage',
'password' => 'changeme
'password' => 'changeme
'
)
)
*/
...
...
@@ -344,7 +344,7 @@ parameters to the execute method, then returning the statement:
/*
array(
0 => 'jwage',
1 => 'changeme
1 => 'changeme
'
)
*/
...
...
@@ -367,7 +367,7 @@ Execute the query and fetch all results into an array:
array(
0 => array(
'username' => 'jwage',
'password' => 'changeme
'password' => 'changeme
'
)
)
*/
...
...
@@ -385,7 +385,7 @@ Numeric index retrieval of first result row of the given query:
/*
array(
0 => 'jwage',
1 => 'changeme
1 => 'changeme
'
)
*/
...
...
@@ -412,7 +412,7 @@ Retrieve assoc row of the first result row.
/*
array(
'username' => 'jwage',
'password' => 'changeme
'password' => 'changeme
'
)
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment