Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
3d80a6eb
Commit
3d80a6eb
authored
12 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Enhance pgsql driver
parent
bfc4df51
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
htdocs/core/db/mssql.class.php
+1
-3
1 addition, 3 deletions
htdocs/core/db/mssql.class.php
htdocs/core/db/pgsql.class.php
+4
-5
4 additions, 5 deletions
htdocs/core/db/pgsql.class.php
htdocs/core/db/sqlite.class.php
+1
-2
1 addition, 2 deletions
htdocs/core/db/sqlite.class.php
with
6 additions
and
10 deletions
htdocs/core/db/mssql.class.php
+
1
−
3
View file @
3d80a6eb
...
...
@@ -25,9 +25,7 @@
/**
* \class DoliDBMssql
* \brief Classe de gestion de la database de dolibarr
* \remarks Works with PHP5 Only
* Classe de gestion de la database de dolibarr
*/
class
DoliDBMssql
{
...
...
This diff is collapsed.
Click to expand it.
htdocs/core/db/pgsql.class.php
+
4
−
5
View file @
3d80a6eb
...
...
@@ -29,8 +29,7 @@
/**
* \class DoliDBPgsql
* \brief Class to drive a Postgresql database for Dolibarr
* Class to drive a Postgresql database for Dolibarr
*/
class
DoliDBPgsql
{
...
...
@@ -245,17 +244,17 @@ class DoliDBPgsql
$line
=
preg_replace
(
'/\sAFTER [a-z0-9_]+/i'
,
''
,
$line
);
// We remove start of requests "ALTER TABLE tablexxx" if this is a DROP INDEX
$line
=
preg_replace
(
'/ALTER TABLE [a-z0-9_]+
DROP INDEX/i'
,
'DROP INDEX'
,
$line
);
$line
=
preg_replace
(
'/ALTER TABLE [a-z0-9_]+
\s+
DROP INDEX/i'
,
'DROP INDEX'
,
$line
);
// Translate order to rename fields
if
(
preg_match
(
'/ALTER TABLE ([a-z0-9_]+)
CHANGE(?: COLUMN)? ([a-z0-9_]+) ([a-z0-9_]+)(.*)$/i'
,
$line
,
$reg
))
if
(
preg_match
(
'/ALTER TABLE ([a-z0-9_]+)
\s+
CHANGE(?: COLUMN)? ([a-z0-9_]+) ([a-z0-9_]+)(.*)$/i'
,
$line
,
$reg
))
{
$line
=
"-- "
.
$line
.
" replaced by --
\n
"
;
$line
.
=
"ALTER TABLE "
.
$reg
[
1
]
.
" RENAME COLUMN "
.
$reg
[
2
]
.
" TO "
.
$reg
[
3
];
}
// Translate order to modify field format
if
(
preg_match
(
'/ALTER TABLE ([a-z0-9_]+)
MODIFY(?: COLUMN)? ([a-z0-9_]+) (.*)$/i'
,
$line
,
$reg
))
if
(
preg_match
(
'/ALTER TABLE ([a-z0-9_]+)
\s+
MODIFY(?: COLUMN)? ([a-z0-9_]+) (.*)$/i'
,
$line
,
$reg
))
{
$line
=
"-- "
.
$line
.
" replaced by --
\n
"
;
$newreg3
=
$reg
[
3
];
...
...
This diff is collapsed.
Click to expand it.
htdocs/core/db/sqlite.class.php
+
1
−
2
View file @
3d80a6eb
...
...
@@ -26,8 +26,7 @@
/**
* \class DoliDBSqlite
* \brief Class to manage Dolibarr database access for a Sqlite database
* Class to manage Dolibarr database access for a Sqlite database
*/
class
DoliDBSqlite
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment