RE: Good book

2004-08-27 Thread Chinchilla Zúñiga, Guillermo
I suggest: For PHP and MySQL: PHP and MySQL Web Development (Sams Publishing) by Luke Welling and Laura Thomson For MySQL: MySQL (second edition) by Paul Dubois -Mensaje original- De: Scott Hamm [mailto:[EMAIL PROTECTED] Enviado el: Viernes, 27 de Agosto de 2004 11:16 a.m. Para:

RE: GUI for MySQL

2004-08-12 Thread Chinchilla Zúñiga, Guillermo
I would suggest DBDesigner available on http://www.fabforce.net/ -Mensaje original- De: Kirti S. Bajwa [mailto:[EMAIL PROTECTED] Enviado el: Jueves, 12 de Agosto de 2004 12:09 p.m. Para: '[EMAIL PROTECTED]' Asunto: GUI for MySQL This is my first attempt to design and test MySQL. I

RE: MySQL know

2004-08-11 Thread Chinchilla Zúñiga, Guillermo
En español lo más útil que he visto es: www.mysql-hispano.org/ Para crear tablas y en general para hacer algo útil en MySQL se necesita aprender SQL, hasta donde yo se, con solo MySQL instalado no vas a poder crear aplicaciones y solo podrás interactuar con el por medio de la línea de comandos

RE: sql function for timestamp

2004-07-14 Thread Chinchilla Zúñiga, Guillermo
In MySQL you can do that with: DATE_FORMAT DATE_FORMAT (column_name,'%Y-%m-%d %H:%i') -Mensaje original- De: J S [mailto:[EMAIL PROTECTED] Enviado el: Miércoles, 14 de Julio de 2004 08:26 a.m. Para: [EMAIL PROTECTED] Asunto: sql function for timestamp Hi, What SQL function do I need

RE: DBF to MySQL

2004-07-07 Thread Chinchilla Zúñiga, Guillermo
to contain a field for each table column. If you want to load only some of a table's columns, specify a column list: mysql LOAD DATA INFILE 'persondata.txt' The whole history is in: http://dev.mysql.com/doc/mysql/en/LOAD_DATA.html Thanks, John on 7/6/04 3:59 PM, Chinchilla Zúñiga, Guillermo

RE: DBF to MySQL

2004-07-06 Thread Chinchilla Zúñiga, Guillermo
Try, for example: LOAD DATA INFILE 'myfile.cdf' INTO TABLE mytable FIELDS TERMINATED BY ',' ENCLOSED BY '' LINES TERMINATED BY '\n'; -Mensaje original- De: John Mistler [mailto:[EMAIL PROTECTED] Enviado el: Martes, 06 de Julio de 2004 04:51 p.m. Para: [EMAIL PROTECTED] Asunto: DBF to

RE: Recommendation on god MySQL books

2004-06-17 Thread Chinchilla Zúñiga, Guillermo
I think Wiley´s Mysql enterprise solutions could be a good option. It´s a great book and have an entire chapter covering replication -Mensaje original- De: Bartis, Robert M (Bob) [mailto:[EMAIL PROTECTED] Enviado el: Jueves, 17 de Junio de 2004 11:44 a.m. Para: [EMAIL PROTECTED]

Perfomance issues

2004-03-12 Thread Chinchilla Zúñiga, Guillermo
Hi folks: I would like to know if there are a perfomance loss using PEAR DB comparing with PHP native Mysql functions, and if this is a significant issue. Also I´m wondering if using persistent connections in PHP could lead to have many connections at the same time slowing the server, and how

Perfomance issues

2004-03-11 Thread Chinchilla Zúñiga, Guillermo
Hi folks: I would like to know if there are a perfomance loss using PEAR DB comparing with PHP native Mysql functions, and if this is a significant issue. Also I´m wondering if using persistent connections in PHP could lead to have many connections at the same time slowing the server, and how