Re: spanish books about mysql?

2002-08-26 Thread Mauricio Sthandier R.
Well, I bought MySQL, EdiciĆ³n Especial from Paul DuBois. The editor is Prentice Hall. Maybe you can buy it at www.pearsoneducacion.com... jeje I found one about MySQL and Perl there. - Original Message - From: Markus Jais [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 24,

Re: Access to MySQL

2002-08-16 Thread Mauricio Sthandier R.
SELECT * INTO mysql_table IN [ODBC;DSN=mysql_dsn;SERVER=localhost;UID=root;PWD=] FROM access_table You need myODBC and execute this in Access. Respect the double empty quotes. - Original Message - From: Oladejo, Tokunboh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 16,

Re: Problem with BLOB Field

2002-08-13 Thread Mauricio Sthandier R.
Try ActualSize instead. - Original Message - From: deep kapasi [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, August 13, 2002 8:33 AM Subject: Problem with BLOB Field Hi, I have already posted this query 4-5 days ago but no reply yet so

BLOBs and DataBase... is it likely to corrupt it with them ?

2002-08-13 Thread Mauricio Sthandier R.
I'm working with BLOBs in mySQL and Visual Basic... i read that storing images in the database has worst performance than the filesystem, but anyway I'm planning to store them in MediumBlobs. My specific problem is that I don't know if I'm risking too much the database, perhaps the chance it will

Re: MySql - Access

2002-08-13 Thread Mauricio Sthandier R.
Could you use this in Access, perhaps ? SELECT * INTO mysql_table IN [ODBC;DSN=mysql_sample_DSN;SERVER=localhost;UID=root;PWD=] FROM access_table You need myODBC 2.5 at least., and set up a DSN for your mysql database. It has worked fine for me with string, numeric and memo fields. It