Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PostgreSql adapter #11

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
11bbca7
+ pgsql adapter + pgsql test and mocks
agborkowski Jun 17, 2011
bf0e4dc
test
zdrap Jun 17, 2011
e16710b
poprawiłem zapytania SQL tworzące tabele
zdrap Jun 17, 2011
519289a
classname fix
agborkowski Jun 17, 2011
09c0733
mock fixes
agborkowski Jun 17, 2011
6c94b90
fix pgsql namespaces
agborkowski Jun 17, 2011
33d5d80
Merge remote branch 'upstream/master'
agborkowski Jun 20, 2011
a6ae193
merge mocks for postgresql and lithium libraries
agborkowski Jun 20, 2011
6d313ec
Merge branch 'master' of github.com:agborkowski/lithium
agborkowski Jun 20, 2011
f44e95d
I added an option that allows you to set the default schema. By conne…
zdrap Jun 22, 2011
2e5b0c1
Fixed name directory
zdrap Jun 22, 2011
3426b2d
Merge branch 'master' of github.com:agborkowski/lithium
zdrap Jun 22, 2011
274bac1
Merge remote branch 'upstream/master'
agborkowski Jun 22, 2011
601fccd
Merge branch 'master' of github.com:agborkowski/lithium
agborkowski Jun 22, 2011
e5beadc
Merge branch 'master' of https://github.com/UnionOfRAD/lithium
agborkowski Jun 27, 2011
c41d2a2
add multischema search_pat support
agborkowski Jun 27, 2011
e6ae2cc
Fixed wrong name
zdrap Jun 27, 2011
2ebba4a
In the method describe () wrote part responsible for the identificati…
zdrap Jun 29, 2011
a17eabf
Fixed method _insertId()
zdrap Jun 29, 2011
d74ed0c
fix QueryException code
agborkowski Jun 29, 2011
d88126e
last error improvment
agborkowski Jun 29, 2011
8c2a6a9
fix limit and offset query in pgsql
agborkowski Jul 6, 2011
8449be0
offset space
agborkowski Jul 6, 2011
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion analysis/logger/adapter/FirePhp.php
Expand Up @@ -41,6 +41,9 @@
* Now, in you can use the logger in your application code (like controllers, views and models).
*
* {{{
* //...
* use lithium\analysis\Logger;
* //...
* class PagesController extends \lithium\action\Controller {
* public function view() {
* //...
Expand All @@ -60,10 +63,12 @@
* method for more information on how your message will be encoded.
*
* {{{
* Logger::debug(array('debug' => 'me));
* Logger::debug(array('debug' => 'me'));
* Logger::debug(new \lithium\action\Response());
* }}}
*
* Make sure you have the Firebug `Console` and `Net` panels enabled to use FirePHP adapter.
*
* @see lithium\action\Response
* @see lithium\net\http\Message::headers()
* @link http://www.firephp.org/ FirePHP
Expand Down