VB + MySQL Client Server Application
I would like to know about what the most important things to be installed in every workstation if I will used VB and MySQL using the ODBC driver. Is there a need to install VB, MySQL, ODBC Driver in all computers? If possible can you give simple snippets in configuring MySQL and ODBC in VB code.
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Mysql_connect(): Client Does Not Support Authentication Protocol Requested By Server; Consider Upgrading MySQL Client
Basically I am setting up php,mysql and apache to run an application. While trying to connect I get the following error: Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client in c:sudhirapachehtdocssvgmap est4.php on line 14 Cannot connect to the database. Client does not support authentication protocol requested by server; consider upgrading MySQL client I have tried the following message posted earlier by many of you guys i.e "SET PASSWORD FOR peter@localhost = OLD_PASSWORD('something') flush privileges I am trying this from a long time and do not find a way to fix this problem I request you guys to help me in soughting this out and I appreciate your patience in reading my post.
Mysql_connect(): Client Does Not Support Authentication Protocol Requested By Server; Consider Upgrading MySQL Client
I am having an awkward problem with my MySQL installation. I have a number of scripts that access the database from a few different web hosting sites. I have no problem accessing the database from the scripts that I host locally. The scripts that are on an outside server accessing the database gives me a mysql_connect() error. Locally I use MySQL 5.0 and PHP 5.0. I am assuming that the 3rd party web host uses an older version of PHP and thinking that may be the problem. Is this the possible problem and if so is there a way to fix it without ruining the scripts that are currently working?
Apps Use MySQL Server Or Client Version?
I am using a shared hosting setup and I'm trying to figure out which version of MySQL my applications are actually using. My host tells me that the MySQL server is running version 4.1.16, but when I do a phpinfo it shows client version 5.0.16. Since some scripts don't support MySQL 5, I am trying to clarify which version my applications would actually use. Any ideas?
PHP-MYS SQL APPLICATION SERVER
I want to set up an application server using PHP and MySQL 5.0.x as the database server. I want the application to be installed in one server unit and the database in another to improve security.In this set up,i will be using the PHP APIs and the stored procedure capability of MySQL.
Remote Connection To MySQL DB Server From Client With No MySQL DB
I have MySQL server running on a Solaris machine. I have a Perl tool that is run on multiple operating systems (Linux, Solaris, MKS on windows, CYGWIN on windows). I would like to post to the MySQL database on the Solaris machine from this script when it is run on the different local clients. All these clients share a single network share (available via Samba on windows). Is there a Perl module that I can install in the network share that I can use to connect remotely to the server DB?
Server-Client
------=_NextPart_000_004C_01C3507A.4005F3F0 Content-Type: text/plain; charset="windows-1254" Content-Transfer-Encoding: quoted-printable Hello, I coded a program by using VB 6.0 I will use this program on = network(nearly 12 user). is it necessary to code two different program = for both of server and client. Or, Can I solve this problem by MYSQL = Control Center. H=FCseyin DEM=DDRA=D0 =DDstikbal Furniture =DDnt. ------=_NextPart_000_004C_01C3507A.4005F3F0--
Server-Client
I coded a program by using VB 6.0 I will use this program on = network(nearly 12 user). is it necessary to code two different program = for both of server and client. Or, Can I solve this problem by MYSQL = Control Center.
Fw: Server-Client
I think that I should ask the question like that. I want to run MySQL on 14 client. What am I do. I try but There is a problem that i can't find.
Application Popup: Mysqld-nt.exe - Application Error
Application popup: mysqld-nt.exe - Application Error : The memory could not be "read". I have gotten this error twice now. I can't seem to find any rhyme or reason to why though. Our sites are all based on php and mysql. The Server load at the time of the crash was minimal. The only common denominator is the Performance Monitor was running. Any clues?
Server Vs Client Version
I have a server where the mysql Server version is 5.0.27 but the client version 4.1.12. I know if the client version is newer than the server then its the server version that counts - is it the same the other way around?
Whats Needed On Client PC And Server?
I'm currently using MySQL 5.0.9 with Visual C++ 6.0 and Qt. My project is on the server, with all the dll's needed as well as MySQL with my database. I can only access my database on the server from a client station if this client station also has MySQL installed. It doesn't even execute the queries in my code. Do I need to use server scripts and if so how do I do it? Is there in Windows something like a mysql-server and mysql-client package? Do we need to install MySQL on all of the client stations?
Controlling The Server -> Client Fetch Size
I see that mysql_use_result() and mysql_store_result() allow you to retrieve results into the client memory space either a single row at a time from the server or the entire result set from the server. Is there a way to control the fetch size so that, say, I get 100 rows back from the server at a time? Cursors would probably do the trick, but then you can't build things in 'C'.
Client Does Not Support Authentication Protocol Requested By Server
i have this message when i try to use 'mysql_connect' command in php. error message : Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client in c:program filesapache groupapachehtdocs7mysql_test.php on line 2
#1251 - Client Does Not Support Authentication Protocol Requested By Server; ...
I am trying to get phpmyadmin working with mysql but I get the below errors... Why is this?? "phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in config.inc.php and make sure that they correspond to the information given by the administrator of the MySQL server." and... " #1251 - Client does not support authentication protocol requested by server; consider upgrading MySQL client " changes in config.inc.php file: $cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin/' $cfg['Servers'][$i]['auth_type'] = 'config' $cfg['Servers'][$i]['user'] = 'root' $cfg['Servers'][$i]['password'] = 'pword' Any ideas if I am missing something?
How Do I Setup The Server On A Network Drive For Client Software To Access?
I'm building a database system for our department at work and have successfully installed the MySQL Server 5.0 to my local machine and developed my user interface to access it read/write/update, etc. just fine through VB6 and the ODBC driver. My problem now is how do I get the database files and server functions moved/transplanted/installed on a network share drive (Windows 2000) that my peers and I have access to, so that I can deploy me client user interface onto their machines so we can all access the database across the network and I can get the files off my local hard drive?
Remote Access Not Working: Error 1251 Client Does Not Support Authentication Protocol Requested By Server
I'm trying to set up my MySQL database for remote access. I've never been a DB admin so this is all mostly new to me. I am binding to my public IP address, and I have created a new user with the following grant commands run from the mysql command line on the server: mysql> grant all privileges on prs_data.* to 'username'@'%' identified by 'change'; Query OK, 0 rows affected (0.00 sec) mysql> grant all privileges on prs_data.* to 'username'@'localhost' identified by 'change'; Query OK, 0 rows affected (0.01 sec) When I try to connect remotely from another host, here's what happens:
Using Mysql In An C++ Application
i am using mysql in my c++ application and when compileing i get the following linker errors (mysql.h, winsock2.h includen AND linked): mysqlclient.lib(my_init.obj) : error LNK2019: unresolved external symbol __imp__RegCloseKey@4 referenced in function _my_win_init mysqlclient.lib(my_init.obj) : error LNK2019: unresolved external symbol __imp__RegEnumValueA@32 referenced in function _my_win_init mysqlclient.lib(my_init.obj) : error LNK2019: unresolved external symbol __imp__RegOpenKeyExA@20 referenced in function _my_win_init mysqlclient.lib(random.obj) : error LNK2019: unresolved external symbol __imp__CryptReleaseContext@8 referenced in function "public: __thiscall TaoCrypt::OS_Seed::~OS_Seed(void)" (??1OS_Seed@TaoCrypt@@QAE@XZ) mysqlclient.lib(random.obj) : error LNK2019: unresolved external symbol __imp__CryptAcquireContextA@20 referenced in function "public: __thiscall TaoCrypt::OS_Seed::OS_Seed(void)" (??0OS_Seed@TaoCrypt@@QAE@XZ) mysqlclient.lib(random.obj) : error LNK2019: unresolved external symbol __imp__CryptGenRandom@12 referenced in function "public: void __thiscall TaoCrypt::OS_Seed::GenerateSeed(unsigned char *,unsigned int)" (?GenerateSeed@OS_Seed@TaoCrypt@@QAEXPAEI@Z).
Can MySQL Be Used On A Desktop Application?
To my understanding/impression, MySQL is mainly being used with web applications. My question is, can I create a desktop application using VB and use MySQL as the database back-end?
Application Builder For MySQL
I have used MySql for web apps and I was wondering if there are any open source tools for building a Windows application to speak to the database. I want to do a one off rostering application for some friends and a web server etc is not necessary or desirable.
MySQL With StandAlone Application
I was doing a search on databases, when I discovered this site. I am trying to creat a test application, where people are asked questions, the responses are saved in a database, along with thier profile. The end users will be dumb computer users, they just need to install the app and take the test. Is MySQL right for this job ?
Distributing MySQL With An Application
we have developed many applications in Access where we end up writing a VB or VBA front end and distributing the Access data repository with the app, where the app is hard coded to talk to the repository. I was wondering if there is any way to distribute a MySQL database along with an application (.exe or whatever) so that the app could talk to it and/or "run" MySQL when it is started (without requiring the end user to really know or care about MySQL). What I don't want is for the end-user to have to: - Install MySQL separately from my app, or - Manually run and stop MySQL to use my app I'd be okay with my APP installing MySQL alongside, and starting and stopping it as needed?
Looking For A Backup/restore MySQL DB Application
I'm looking for a very simple application to backup/restore a mySQL database. Actually, I would need to be able to launch the application from a command line so that I dont have to select a profile or anything like that...just put the command line in a bat file, run the bat file and everything is done. I've already tried : - Backup Watcher for Mysql - MyWitch - DumpTimer - SQLyog - MySQL Snap None of them seems to work with a command line.
Delayed Response From MySQL To VB 6.0 Application
I have developed a system using Visual Basic 6.0 connecting to a MySQL database. The system inserts new records, updates existing records and views all records in the database. When I do an insert record and save the record to the database,I have a Flex Grid that I use to view all records from the table in the database,even the newely added record I just added. However, when i do add a new record, it takes at least half a minute to see the record in my Flex Grid. This confuses the user and he/she thinks that the record did not save, where in fact it did.I had already put an feature to update the Flex Grid and I don't think that Visual Basic is the problem. I think the problem may be the delay in response from the MySQL database to the VB application. This is the only problem I am having with MySQL, but it's a lot better to manage and easier to use than Microsoft SQL Server or Oracle.
Using MySQL As A Backend For A Commercial Application
I've read the MySQL licensing material and what I've found online, but I'm still unclear about when I have to pay MySQL for a license. Scenario: I've created an application that stores some data in MySQL 5.0 (InnoDB table types). It connects to MySQL 5.0 via MyODBC. 1.) If I include MySQL 5.0 and MyODBC in the installer, do I have to buy a separate MySQL license for every copy of the installer I sell? 2.) If I include MySQL 5.0 and MyODBC in the installer but allow the user to use their own licensed copy of MySQL 5.0, do I have to buy a license for the unused MySQL? 3.) If I include MySQL 5.0 and MyODBC in the installer but allow the user to use SQL Express (a non-MySQL product) instead, do I still have to buy a license for the unused MySQL? 4.) Does not including MySQL 5.0 and MyODBC in the installer change anything for any of these scenarios? I would like to support MySQL as the backend for my product, but not if I have to pay ~$600 for every copy just to allow a user to use MySQL (not require).
MySQL Dump Is Not Allowing Application To Run
I am creating a backup once per day automatically. The current size of the file is around 4.1 Gig uncompressed. The command that I use is as follows: mysqldump --opt -q -R -u username-p'passwd' dbname | gzip > /filepath/$(date +%F).sql.gz This takes around 25 - 30 minutes to fully backup the database. The problem that I have seen is that while this backup is occurring I cannot access my JBoss application. Oddly enough, I tried to access the database directly and everything is working fine, but any other remote user cannot access the database. I want to know a couple of things: 1) Is my backup command optimized or is there something else I can add to make it faster. Now I do need to backup the data, table structure, stored procedures, etc. 2) How can I conduct a backup that is more efficient where it does not interfere with the remote users?
Rapid Web Application Development Framework For MySQL
I am searching for a rapid web application development framework for the MySQL database. In particular I am searching for an equivalent to the Application Express framework of Oracle (http://apex.oracle.com/i/index.html) for the MySQL database. I need to create an interface that allows users to simply create records in the database (e.g. through forms) and must be able to support more elaborate functionalities such as creating wizards or providing different and customized views to the database. Ideally all this works in a web browser.
Writing Multi-threaded Mysql Application
What I'm trying to do is to rewrite mysql client application (which calculates ISP dial-up customers' billing)into multi-threaded version. I'm looking for some resources on multi-threaded mysql application programming and it will be great if somebody knows some tutorials, samples and howto documentations on the web. I searched the web and didn't find anything related to mysql multi-threaded programming.
MySQL Open Source Application Components/plug-ins/add-ons
Perhaps someone might be able to tell me if there is a place to find MySQL opensource community application components/add-ons/plug-ins/contributions (whatever one might call them) which developers can reuse and modify to deliver MySQL applications faster? eg. something like a community download repository, or something to that effect. Would likely contain database definitions, queries, performance analysis tools, etc. Many open source products have this, I'm sure MySQL must, just feel silly that I can't find it.
Going From Client Side, To Server Side.
I was wondering: if i install MySQL, and the PhP egine on my computer, does this mean, i will have to connect my domain name, or URL, to my machine? I am having a hard time figuring out in my head the process by which i go from having something on the client side end of things, and the server/host side of things. I know that PHP is pretty much a language that you basically have as files, much like an actual HTML page. To this end then, i realise i will simply have to load my PHP scripts onto the server in which they are supposed to work. I am not however sure how i would do the same with MySQL. I do not know enough about the latter to know how its transferrable. So far, from what i read, i use a Console to test certain commands, like the creation of a Table, or the deletion of a Table. But how do i actually connect MySQL to a server that is not my own machine?
Mysql Client V5.0.21
Basically if I type a command in mysql and then try to reuse it by pushing the up arrow, most of the time a segmentation violation will occur.
Mysql Client
Is there any option of formatting the columns of tables so that for example only 5 characters of each column is displayed?(also is there any way to set no wrapping) That is in order to get a proper output of tables in a win98 DOS prompt. I know that Oracle SQL gives you such options.
VB And Mysql:client
i wanna conn VB 6 to a mysql 4.1 database using mysql odbc driver 3.51 on windows XP. this conn is done usin ADODB. however on executing i get the following error: "client does not recognise authentication protocol requested by server, please consider upgradin mysql." upgradin to 5.0 is senseless. it is a godown of bugs
Installing MySQL Client
I'm sure this is a really noob thing to be asking.... I have MySQL and PHP installed onto my web hosting server and it's running fine. Now, my problem is that I can't figure out how to access it from my computer. I'm mainly using Frontpage (because that's the program that everything was built on before I was hired) to build the websites. What is the easiest way to be able to start using this database?
Client Character Set In MySQL 4.1.10
I have a problem with character set client and connection in MySQL 4.1.10. I have all tables in cp1250_czech_cs collation and I have set a global session character_set_client, character_set_connection and character_set_result to cp1250. When I make a connection to the database in PHP (mysqli_connect();) and execute a query SHOW SESSION VARIABLES; it return that character_set_client, character_set_connection and character_set_client is set to latin1. What can I do, when I want to set this variables to cp1250 as default? (and not use SET NAMES cp1250; in each script). My OS is Win XP SP2 and Win 2000, Mysql version 4.1.10-nt, PHP version 5.0.3
MySQL Client Side
Does mySQL have lite version? Similar to ms sql express, where it can be distributed without a full server version. I have program with many clients and i'm wanting to move away from access if i can.
MySQL Client Ran Out Of Memory
I'm using a mysql server with my own TCP/IP server on the same FreeBSD machine. MySQL stores a users database, like logins and passwords. It works fine for a couple of days, but after that my simple queries with one row of result stops working. It says "MySQL Client ran out of memory". If I connect to mysql using other tools or simply restart my server - it works fine again under the same queries. So please don't support I use a huge amount of data, whole database can be selected in one query under normal conditions, its pretty small. My Server Info: sr10# mysql --version mysql Ver 14.7 Distrib 4.1.16, for portbld-freebsd5.4 (i386) using 4.3
MySql Client 3.51 Through Proxy
OK I am working with an external company that has opened a DB for us to attach to. There documentation has you install My Sql 3.51 driver. I have all the login info and server address correct but it fails to connect. We do have a firewall here but I see no place in the System DSN to reference it. Do I need something else to make the work with a firewall?
MySQL GUI Client Tool
I am looking for a gui-based open source client tool for mysql. Does anybody have any suggestion besides those listed in the first few posts in the beginning of the forum?
Install MySQL Client
Is there any client tools available for mysql like sql server so that i can install server in one machine and client tool in a client machine that will connect to the mysql sever
Mysql Unix Client
I there, I would like to know if there is a mysql client that we can use from unix to connect to a mysql windows server?
Table Rows Inserted By Embeddded MySQL Cannot Be Retrieved By MySQL Tcp Client
I have encountered a weird behavoir of embedded MySQL. Through a simple program I made (in Delphi 6), I can insert rows to a table through embedded MySQL and I can retrieve the rows from my program. But using mysql.exe which points to the same table (through 127.0.0.1, with the same basedir and datadir), I cannot see the rows I inserted using my embedded program. Another way around, the rows inserted by mysql.exe can be seen in my embedded program. But after a row is inserted by mysql.exe, the rows inserted by the embedde program are deleted (or cannot be queried). Can anybody explain why is this? Is there a way to fix it?
MySQL Client Library? Where Can I Find It?
I'm trying to get an emailing program to work with mysql using ODBC on Windows and i've run into a couple of issues. I used the installer found on the mysql website and the mysqld-nt.exe process is running. I can also run the "mysql" command to create users, run queries, all the usual stuff. My first issue is that the icewarp email program shows me an error that reads "Mysql client library not found". Does anyone know where this file could be located? I used the default directory during my installation. on the mysql website it said to run "mysql_config --libs" to find where my client library is, but this program is no where to be found in the installation. The mysql website says : "You should be able to solve this problem by adding -Ldir_path -lmysqlclient at the end of your link command, where dir_path represents the pathname of the directory where the client library is located." when i have the path.. do i enter those options in the text field after i right click -> properties mysqld-nt.exe?
PHP4: How To Upgrade MySQL Client To V4?
Clean install of: PHP 4.4.2 MySQL 4.1.21 Problem: phpinfo() shows the MySQL client to be 3.23.49. I want my dev environment to match my hosts, so upgrading to PHP5 and/or MySQL5 is not an option. So how do I upgrade the MySQL client in PHP to 4.x? I tried the MySQL PHP connector page ( http://dev.mysql.com/downloads/connector/php/ ) , but it only lists downloads for PHP5. (which I tried anyway, but can't get to work)
Where Is The MySQL Command Line Client?
I have installed the XAMPP package on my computer, which contains appache php and mysql. however I don't know how to create a database with the command line client in mysql or even where to type the code required to set up a new database. Not a very interesting question, but it's vital i get an answer if i am to start learning.
MySQL Command Line Client
I have just installed MySql Server 5 on my Windows XP pc. When I start up the MySql Command Line Client, I type in the password and then the command line comes up. I create a database and then type use database: I then run the command source C;jt.sql. This drops tables if they are there and then creates the tables and inserts data. Once this has completed, I can then selet from the tables. For instance there is a table called users. If I type 'select * from users;' It comes back with the results and 2 row in set. This is fine however as soon as I exit from the MySql Command Client and come back in then I use database and show tables. There are no tables in there. My question is this, why are the data and tables not staying in the database? I have tried commiting but it makes no difference.
|