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
e3df7b6b
Commit
e3df7b6b
authored
Aug 07, 2006
by
doctrine
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
--no commit message
--no commit message
parent
594e7932
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
6 deletions
+10
-6
Common.php
Doctrine/Session/Common.php
+0
-1
Firebird.php
Doctrine/Session/Firebird.php
+0
-1
Informix.php
Doctrine/Session/Informix.php
+0
-1
Mssql.php
Doctrine/Session/Mssql.php
+0
-1
Oracle.php
Doctrine/Session/Oracle.php
+0
-1
Getting started - Compile.php
manual/codes/Getting started - Compile.php
+9
-0
UnitTestCase.php
tests/UnitTestCase.php
+1
-1
No files found.
Doctrine/Session/Common.php
View file @
e3df7b6b
<?php
Doctrine
::
autoload
(
'Doctrine_Session'
);
/**
* standard session, the parent of pgsql, mysql and sqlite
*/
...
...
Doctrine/Session/Firebird.php
View file @
e3df7b6b
<?php
Doctrine
::
autoload
(
'Doctrine_Session'
);
/**
* firebird driver
*/
...
...
Doctrine/Session/Informix.php
View file @
e3df7b6b
<?php
Doctrine
::
autoload
(
'Doctrine_Session'
);
/**
* informix database driver
*/
...
...
Doctrine/Session/Mssql.php
View file @
e3df7b6b
<?php
Doctrine
::
autoload
(
'Doctrine_Session'
);
/**
* mssql driver
*/
...
...
Doctrine/Session/Oracle.php
View file @
e3df7b6b
<?php
Doctrine
::
autoload
(
'Doctrine_Session'
);
/**
* oracle driver
*/
...
...
manual/codes/Getting started - Compile.php
0 → 100644
View file @
e3df7b6b
Doctrine
is
quite
big
framework
and
usually
dozens
of
files
are
being
included
on
each
request
.
This
brings
a
lot
of
overhead
.
In
fact
these
file
operations
are
as
time
consuming
as
sending
multiple
queries
to
database
server
.
The
clean
separation
of
class
per
file
works
well
in
developing
environment
,
however
when
project
goes
commercial
distribution
the
speed
overcomes
the
clean
separation
of
class
per
file
-
convention
.
Doctrine
offers
method
called
compile
()
to
solve
this
issue
.
The
compile
method
makes
a
single
file
of
most
used
Doctrine
components
which
can
then
be
included
on
top
of
your
script
.
By
default
the
file
is
created
into
Doctrine
root
by
the
name
Doctrine
.
compiled
.
php
.
tests/UnitTestCase.php
View file @
e3df7b6b
<?php
require_once
(
"../Doctrine.php"
);
require_once
(
"../Doctrine.
compiled.
php"
);
//Doctrine::loadAll();
function
__autoload
(
$class
)
{
...
...
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