Export Textdata like MySQL Command line
Posted: Wed 06 Apr 2011 17:35
Hi,
ist there any way to export data in the same format then MySQL Command Line do?
Example "devart":
example "MySQL Command Line":
The MySQL Command Line Output is more handsome I thing.
with kind regards,
Thomas
ist there any way to export data in the same format then MySQL Command Line do?
Example "devart":
Code: Select all
======================================================================================================
| id | path
======================================================================================================
| 1 | 1,
------------------------------------------------------------------------------------------------------
| 2 | 1,
------------------------------------------------------------------------------------------------------
| 3 | 1,3,
------------------------------------------------------------------------------------------------------
| 4 | 2,4,
------------------------------------------------------------------------------------------------------
Code: Select all
mysql> select * from test;
+----+------+-------+--------+-------+
| id | path | value | parent | idtyp |
+----+------+-------+--------+-------+
| 1 | 1, | HuHu1 | 0 | 1 |
| 2 | 1, | HuHu2 | 0 | 1 |
| 3 | 1,3, | HuHu3 | 1 | 2 |
| 4 | 2,4, | HuHu4 | 2 | 2 |
+----+------+-------+--------+-------+
4 rows in set (0.00 sec)
mysql>
with kind regards,
Thomas