Announce: Maccess 1.9.1 Has Been Released

2004-01-15 Thread Marek Chlup
Hi, Maccess helps to analyse data in databases; it is a Web interface to MySQL server. License is GPL. Main features: -- * user friendly query creation for MySQL server * selective, grouped, and crosstab queries * various outputs (XML, HTML, TXT, graphs) * data ungrouping in grouped q

group by concat

2001-07-09 Thread Marek Chlup
Hi! My problem is when I use group by concat(col1,col2) when col1 and col2 is primary keys and col1 is varchar(255): SELECT col1,col2 FROM Table1 GROUP BY concat(col1,col2); -> return only one row - it is bad SELECT col1,col2 FROM Table1 GROUP BY concat(col1,col1,col2); -> return 48 rows - it

Re: XML support under mySQL

2001-02-21 Thread Marek Chlup
If you use perl try DBIx::XML_RDB: http://www.xml.com/pub/a/2000/12/13/perlxmldb.html (I don't tested this modul.) You can try my soft Maccess :-) (with XML output): http://www.meopta.com/products/software/maccess/ bye Marek - Original Message - From: "Gorjan Todorovski" <[EMAIL PROT

Mysql and transactions and perl DBI

2001-01-25 Thread Marek Chlup
Good morning! Where is mistake? my $dbh=DBI->connect("DBI:$driver:$database:$hostname",$user,$pass,{AutoCommit=>0}); my $sth=$dbh->prepare(q{ insert into test.Pokus (a,b) values (?,?) }); foreach my $a ("a","b","c","d") { $sth->execute($a,$a); } $dbh->commit; $dbh->dis