Re: DELETE with no WHERE clause

2002-12-23 Thread Dennis Salguero
I can not confirm this, but it would make sense that this was updated in 4.05. After all, you are only deleting your records, not re-building the table. The new functionality you describe is also present in SQL Server and Oracle. Filter: Mysql , sql , query Good Luck, Dennis Salguero

Re: Javascript and mySQL

2002-11-25 Thread Dennis Salguero
First rule of JavaScriptis you don't talk about JavaScript! Second rule of JavaScript is you _don't_ talk about JavaScript! But seriously, remember that JavaScript has very, very few input/output functions that can be used outside of a browser. There really isn't a way to create a JavaScript conn

Re: select from two table

2002-11-22 Thread Dennis Salguero
> > SELECT name, table1.position, table2.position > > FROM table1,table2 > WHERE table1.name=table2.name; > > Regards, > Jocelyn > - Original Message - > From: "Dennis Salguero" <[EMAIL PROTECTED]> > To: "Osman Omar" <[EMAIL PROT

Re: select from two table

2002-11-22 Thread Dennis Salguero
> > SELECT name, table1.position, table2.position > > FROM table1,table2 > WHERE table1.name=table2.name; > > Regards, > Jocelyn > - Original Message - > From: "Dennis Salguero" <[EMAIL PROTECTED]> > To: "Osman Omar" <[EMAIL PROT

Re: select from two table

2002-11-22 Thread Dennis Salguero
You might want to add some unique IDs or something else in common to make this query a bit better, but the following is what you should be doing: SELECT name, table1.position, table2.position WHERE table1.name=table2.name Good Luck! Dennis - Original Message - From: "Osman Omar" <[EMAI

Re: SQL Query

2002-11-16 Thread Dennis Salguero
- Original Message - From: "Paul van Brouwershaven" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, November 16, 2002 8:58 AM Subject: RE: SQL Query > I'ts a dump of an other database with more than 4 million records Yeah, but that still doesn't mean that you can't use the ea

Re: Access replacement...

2002-11-05 Thread Dennis Salguero
This is an interesting question and I hope you get a lot of responses since I'm sure that I will only cover a small percentage of what you will actually need. The primary thing to remember is that you are moving from what could be considered a self-contained development environment with a solid GU

Re: password function

2002-10-31 Thread Dennis Salguero
You can't decrypt the password from MySQL, instead, you should encrypt the input from PHP and then do the string comparison. Good Luck, Dennis - Original Message - From: "Elaine Kwek" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 31, 2002 9:27 PM Subject: password f

Re: sql problem

2002-10-23 Thread Dennis Salguero
It looks like you're missing a comma in your SQL statement in between placeOfBirth and civilStatus. Good Luck! Dennis - Original Message - From: "Mylin Campos" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 23, 2002 2:13 AM Subject: sql problem > > Hi all, > > I j

Re: Strange problem with MySql & IIS & ASP

2002-10-22 Thread Dennis Salguero
Have you tried using a GROUP BY statement - maybe something like: SELECT ExpDepDate, ActArrDate, Count(Ref) as NoOfRefs FROM oceandata GROUP BY ExpDepDate, ActArrDate, Ref Good Luck! Dennis - Original Message - From: "Morsky Juha" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday

Q: Stored Procedures

2002-01-01 Thread Dennis Salguero
My question pertains to the implementation of stored procedures in MySQL. According to the MySQL documentation, this is scheduled for the 4.1 release. Is this still accurate? When will we be seeing the first downloads of 4.1 available? Thanks, Dennis ***

Re: How many tables?

2001-12-24 Thread Dennis Salguero
- Original Message - From: "John Mayson" <[EMAIL PROTECTED]> To: "MySQL List" <[EMAIL PROTECTED]> Sent: Monday, December 24, 2001 4:40 PM Subject: How many tables? > How far should I go with this? Right now when I look at my frequency table, it's mostly a > list of numbers. I suppose t

Any Interest In A MySQL DB Viewer?

2001-11-16 Thread Dennis Salguero
meant as a robust managing or editing tool. If anyone thinks that they may use a tool like this for MySQL, or want to request a copy, please e-mail me. Any other thoughts on a "release structure" are also welcome. Thanks, Dennis Salguero

Re: Ultimate DB Server

2001-10-28 Thread Dennis Salguero
an board - easy to configure and rig to the case), 512Mb RAM and 30 gb hard-drive - works like a charm. Good Luck, Dennis Salguero ** Beridney Computer Services [EMAIL PROTECTED] http://www.beridney.com -

Re: Proposed Guidelines for Posting to the MySQL list

2001-10-21 Thread Dennis Salguero
s. > Note also that there's a good chance your question has been answered in the > past. Please spend a minute or two checking one of the MySQL List archives, > eg. the one at the MySQL site (http://lists.mysql.com/). See above; this archive is a

Re: Absolute beginner moving from Access

2001-10-21 Thread Dennis Salguero
e some resources for that already out there. Good Luck, Dennis Salguero ** Beridney Computer Services [EMAIL PROTECTED] http://www.beridney.com - Before posting, please check:

Re: shared datafiles.

2001-10-21 Thread Dennis Salguero
're much better off creating two connections rather than having two simulatneous servers. Good Luck, Dennis Salguero ** Beridney Computer Services [EMAIL PROTECTED] http://www.beridney.com --

Re: foreign key

2001-10-19 Thread Dennis Salguero
I'm pretty sure that the "complete" implementation is not done yet, in the sense that there is no RDI enforcement. Good Luck, Dennis ** Beridney Computer Services [EMAIL PROTECTED] http://www.beridney.com - Original Message - From: "Sandra Rov

Re: FOREIGN KEY ... ON DELETE CASCADE

2001-09-11 Thread Dennis Salguero
Take a look at: http://www.mysql.com/doc/M/i/Missing_Foreign_Keys.html Basically, MySQL does not support foreign keys. Therefore, referrential data integrity (RDI) is also not available. Good Luck, Dennis ** Beridney Computer Services http://www.beri

Re: Trouble w/MySQL Server

2001-09-04 Thread Dennis Salguero
- Original Message - From: "Deryck Henson" <[EMAIL PROTECTED]> To: "MySQL" <[EMAIL PROTECTED]> Sent: Tuesday, September 04, 2001 10:54 AM Subject: Trouble w/MySQL Server > Well, I've fixed the problem with mysqld.exe and innodb, but the server wont > connect with my ASP pages. Any ideas

Re: ldap authentication for mysql

2001-08-22 Thread Dennis Salguero
- Original Message - From: "Mike Jackson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Stefan Hinz" <[EMAIL PROTECTED]> Sent: Wednesday, August 22, 2001 1:59 PM Subject: Re: ldap authentication for mysql > PHP is not the solution. On the other hand, Zope just might be... I am > studyi

Re: development tools

2001-08-14 Thread Dennis Salguero
Naturally, the answer is: it depends. What is your application supposed to do? What languages are you versed in? Does your data need to be accessible via the web? At the very least, you will be needing the ODBC driver for MySQL, MyODBC. It's available from the MySQL web site. Other than that, ke

Re: quickie!

2001-08-05 Thread Dennis Salguero
Are you looking for: SELECT table1.name, table2.subject FROM table1, table2 WHERE table1.id=table2.student_id Good Luck, Dennis ** Beridney Computer Services http://www.beridney.com - Original Message - From: "Jamie Burns" <[EMAIL PROTECTED]>

Re: sequences or auto_increment column????

2001-07-27 Thread Dennis Salguero
I prefer to use Auto_Increment for ease of use. In addition, I don't think that MySQL supports sequences outright (like you may be used to with Oracle). There are some workarounds availabe within the MySQL manual, do a search with "sequences". Good Luck, Dennis **

Re: Mysql

2001-07-25 Thread Dennis Salguero
- Original Message - From: "Jay McGarry" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 25, 2001 7:57 AM Subject: Mysql > what's the easiest way to transfer a local database to a remote one? Depends on many factors really. Are you doing this as a one-off thing or some

Re: Direct access to a mySQL DB via Visual Basic

2001-07-23 Thread Dennis Salguero
You COULD use the ADO data control, but I wouldn't recommend it. There are still some ADO methods and objects that are not fully supported and you will most likely generate some strange errors. It may be a pain to do it, but you'll be better off doing it the "old-fashioned" way with your own conne

Re: MYODBC & DSN creation

2001-07-22 Thread Dennis Salguero
- Original Message - From: "David Rickerl" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, July 22, 2001 2:57 PM Subject: MYODBC & DSN creation > Have successfully installed MYODBC, driver shows up in Windows Control > Panel, I assume that you mean in the Data Sources window/u

Re: Converting ACCESS or EXCEL Data to MySQL

2001-07-18 Thread Dennis Salguero
- Original Message - From: "Oliver Hohlfeld" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 18, 2001 8:13 AM Subject: Converting ACCESS or EXCEL Data to MySQL > I'm currently working on a bigger Project. Uh oh, wasn't that the plot to "The Spanish Prisoner" ?? ;-) >

Re: Storing Credit Cards

2001-07-01 Thread Dennis Salguero
- Original Message - From: "Chris Cameron" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, July 01, 2001 2:27 PM Subject: Storing Credit Cards > One of the ideas was to have the users password encrypted as an md5 hash, > and then to encrypt the users CC with their password. So

Re: Connecting to MySQL w/VB

2001-06-28 Thread Dennis Salguero
- Original Message - From: "Jason Brunk" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 8:18 PM Subject: Re: Connecting to MySQL w/VB > i know i am definitly knew at this, but his permissions could be set more or > less for read only. Yes, it's possible that t

Re: Connecting to MySQL w/VB

2001-06-28 Thread Dennis Salguero
- Original Message - From: "Robert Skinner" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 7:44 PM Subject: Connecting to MySQL w/VB > I am trying to connect to MySQL using a connection string using VB6. The > read part is great but I don't seem to be able to

Re: MS IIS web logfiles

2001-06-28 Thread Dennis Salguero
- Original Message - From: "Charles Henderson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 4:33 PM Subject: MS IIS web logfiles > How can I get mySQL to create a table for a IIS web logfile (*.log) ? The > file is very long (maybe 1 million records +) and t

Re: CF and MySql?

2001-06-26 Thread Dennis Salguero
There are many ways to do this - I'm assuming you want to do this on an Windows box. One way is through MyODBC. It's an ODBC driver that you can install on your server, available from the MySQL web site. From there, all you have to do is create a new DSN, either through the CF Admin or Windows. Y

Re: Let's try this again..HELP PLEASE

2001-06-02 Thread Dennis Salguero
Danger, danger! UltraDev code ahead! First off, do yourself a favor and try to ween yourself off UltraDev and learn ASP and SQL from a good book and write the code yourself. It will probably save you many headaches in the future. I think that your problem might be twofold and they are related.

Re: ASP and my sql??

2001-05-30 Thread Dennis Salguero
It depends on what you mean by "without using ODBC". You CAN connect to a MySQL database without a DSN name, you can just declare an IP address and a DB name, but I'm pretty sure that this method still uses the MySQL ODBC driver and it must be installed on the server. You CAN NOT, as far as I kn

Re: VBA/VB DAO/ADO MS Access to MySQL?

2001-05-29 Thread Dennis Salguero
I'll add my two cents along with what everyone else has said because I have worked with all three. In short, MySQL works best when you are strictly using ADO and not DAO. On top of that, it's fast becoming (if it's not already) an ADO world! So, in the long run you might be better off converting

Re: Help w/MySQL and Dreamweaver Ultradev

2001-05-28 Thread Dennis Salguero
f the options within the FormatDateTime function will format the date to the -MM-DD format used by MySQL (and Oracle too, btw). Therefore, use the following function: <% Function MakeDate(strDate) 'Written by Dennis Salguero If IsDate(strDate) Then Dim m Dim d Dim y m =

Re: Mysql difficult query. Need help!

2001-05-24 Thread Dennis Salguero
If it's not too late, may I suggest that you re-structure your database while using normalization & RDB rules??? The database that you are looking for is actually very straight-forward and I'm sure it's been done many times before. To get you started, think about how you would see these products

Re: How To Port MS SQL Database to MySQL

2001-04-24 Thread Dennis Salguero
I believe that stored procedures are still on the TODO list, but that might not fit into your client's plans. Recall that stored procedures are a form of "compiled" SQL code. Therefore, if you want, you could take that SQL code, in the stored procedure, and put it into your VB application and exe

Re: MSACCESS v.s. MYSQL

2001-04-23 Thread Dennis Salguero
Original Message - From: "Warren van der Merwe" <[EMAIL PROTECTED]> Subject: MSACCESS v.s. MYSQL > I am looking at alternate databases and have been testing with MYSQL for > some days now. I have noticed a couple distinct differences in some of the > SQL statements, but have managed to

Re: MySQL and MyODBC

2001-04-20 Thread Dennis Salguero
- Original Message - From: "Matteo" <[EMAIL PROTECTED]> Subject: MySQL and MyODBC > i'm developing a software in V.b.6 based on MySql d.b. > Early i'll need to create a package in order to install this software. > So, i need to know if i must to include, into the packege, only d.b. >

Re: question about integrating ASP pages

2001-04-18 Thread Dennis Salguero
> Is it possible to use ASP with MySQL? I found a link > in the documentation to > www.amedea.cz/mysqlx/index.html which was supposed to > have a downloadable MySQL COM extension but the > website was not found. Yes, it's possible to use ASP with MySQL. In a nutshell, you need to make sure that

Re: ADO RS.Update problem

2001-04-18 Thread Dennis Salguero
- Original Message - From: "Pat Sherrill" <[EMAIL PROTECTED]> Sent: Saturday, April 14, 2001 7:34 AM Subject: Re: ADO RS.Update problem > Just a quick note about RecordCount. RecordCount only returns the number of > records or rows from the recordset that have been 'seen'. Therefore it

Re: ADO RS.Update problem

2001-04-14 Thread Dennis Salguero
Unfortunately, it doesn't seem like all ADO methods and properties and supported when working with MySQL. Update, as you know, is one of them, along with others like RecordCount. I would recommend using a connection object and then passing an SQL statement to run. If need be, you can add the resu

Re: ADO problem with MYSQL datetime column

2001-03-27 Thread Dennis Salguero
- Original Message - From: "Samantha Savvakis" <[EMAIL PROTECTED]> To: "MySQL" <[EMAIL PROTECTED]> Sent: Tuesday, March 27, 2001 12:39 AM Subject: ADO problem with MYSQL datetime column > I have a table that I'm querying that has 'datetime' columns. If these > columns are null or 0 - "00

Re: help on mysql tables

2001-03-27 Thread Dennis Salguero
- Original Message - From: "Ramasamy Palaniappan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 27, 2001 6:53 AM Subject: help on mysql tables > I have created the following table: > > create table test(name varchar(10) NOT NULL); > query is ok Yes, but notice that yo

Re: Is email unique?

2001-03-21 Thread Dennis Salguero
Original Message - From: "Bryan Wheelock" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 21, 2001 5:31 PM Subject: Is email unique? > I have been trying to think of naturally occuring unique identifiers that > people might use on the internet. > I think that e-mail a

Re: Split results

2001-03-19 Thread Dennis Salguero
I think that this is highly dependant on the language you are using to display your results; you would probably get more help if you included that. Good luck, Dennis **' Beridney Computer Services [EMAIL PROTECTED] P: 703-566-3196 http://www.beridney.c

Re: Cold Fusion

2001-03-08 Thread Dennis Salguero
> 1. Can CF work with mySQL via myODBC on win2k? Of course. That's the beauty of ODBC, as long as your language can call an ODBC connection (which CF can of course) you can use it. > 2. Is there a better way to use CF and mySQL? With what goal in mind? If you're worried about the overhead tha

Re: Download of MySQL

2001-01-24 Thread Dennis Salguero
Actuall, I agree with the earlier post, I did find that sometimes the download connection to SourceForge quits half-way during the download. My recommendation would be to try one of the mirror sites and download from there since I don't think that they use SourceForge. Good Luck, Dennis -

Re: Visual Basic and MySQL?

2001-01-17 Thread Dennis Salguero
Please check the archive. I posted a few functions last week that may be of use to you. Don't want to re-post since your question is slightly OT. Good luck, Dennis *** Beridney Computer Services & Beridney Talent http://www.beridney.com -