Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
domainepublic
alternc
Commits
faaf268d
Commit
faaf268d
authored
Mar 28, 2014
by
Alan Garcia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Commence a passer en mysqli
parent
62981ecf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
.travis.yml
.travis.yml
+1
-0
bureau/class/db_mysql.php
bureau/class/db_mysql.php
+3
-5
No files found.
.travis.yml
View file @
faaf268d
language
:
php
php
:
-
5.5
-
5.4
-
5.3
script
:
phpunit --coverage-clover=coverage.clover
...
...
bureau/class/db_mysql.php
View file @
faaf268d
...
...
@@ -325,7 +325,7 @@ class DB_Sql {
$this
->
Seq_Table
,
$seq_name
,
$currentid
);
$id
=
@
mysql_query
(
$q
,
$this
->
Link_ID
);
@
mysql_query
(
$q
,
$this
->
Link_ID
);
}
else
{
$currentid
=
$res
[
"nextid"
];
}
...
...
@@ -334,7 +334,7 @@ class DB_Sql {
$this
->
Seq_Table
,
$nextid
,
$seq_name
);
$id
=
@
mysql_query
(
$q
,
$this
->
Link_ID
);
@
mysql_query
(
$q
,
$this
->
Link_ID
);
$this
->
unlock
();
}
else
{
$this
->
halt
(
"cannot lock "
.
$this
->
Seq_Table
.
" - has it been created?"
);
...
...
@@ -345,8 +345,6 @@ class DB_Sql {
/* public: return table metadata */
function
metadata
(
$table
=
''
,
$full
=
false
)
{
$count
=
0
;
$id
=
0
;
$res
=
array
();
/*
...
...
@@ -481,7 +479,7 @@ class DB_Sql {
$this
->
query
(
"SHOW TABLES"
);
$i
=
0
;
$return
=
array
();
while
(
$info
=
mysql_fetch_row
(
$this
->
Query_ID
))
while
(
$info
=
mysql
i
_fetch_row
(
$this
->
Query_ID
))
{
$return
[
$i
][
"table_name"
]
=
$info
[
0
];
$return
[
$i
][
"tablespace_name"
]
=
$this
->
Database
;
...
...
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