1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-22 16:22:58 +02:00

[feature/dbal-tests] Added tests for dbal fetchrow and fetchfield.

This commit is contained in:
Joas Schilling
2010-03-26 16:41:19 +01:00
parent 94bc65e203
commit af654814f6
4 changed files with 100 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8" ?>
<dataset>
<table name="phpbb_users">
<column>user_id</column>
<column>username_clean</column>
<row>
<value>1</value>
<value>barfoo</value>
</row>
<row>
<value>2</value>
<value>foobar</value>
</row>
</table>
</dataset>