Tagged Questions
11
votes
5answers
6k views
PHP - MySQL connection not working: 2002 No such file or directory
I tried to use WordPress, and it would never work. I have apache and mysql running, the accounts and database are all set up, there are no typos. So I tried to make a simple connection:
<?php
...
9
votes
2answers
202 views
Why does PDO print my password when the connection fails?
I have a simple website where I establish a connection to a Mysql server using PDO.
$dbh = new PDO('mysql:host=localhost;dbname=DB;port=3306', 'USER',
'SECRET',array(PDO::MYSQL_ATTR_INIT_COMMAND ...
9
votes
6answers
20k views
Cannot connect to MySQL 4.1+ using old authentication
I'm trying to connect to a mySQL database at http://bluesql.net, but when I try to connect, it gives this error:
Connect Error (2000) mysqlnd cannot connect to MySQL 4.1+ using old authentication
...
6
votes
4answers
356 views
MSSQL to MySQL data transfer
I am trying to transfer bulk data on a constant and continuous based from a MSSQL database to a MYSQL database. I wanted to use MSSQL's SSMS's replication but this apparently is only for MSSQL to ...
5
votes
4answers
154 views
A problem connecting to a MySQL DB using JDBC
Here's how I'm trying to connect:
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
} catch (Exception e) {
throw new DbConnectionException();
}
try {
connection = ...
5
votes
11answers
3k views
MySql connection, can I leave it open?
Is it smart to keep the connection open throughout the entire session?
I made a C# application that connects to a MySql database, the program both reads and writes to it and the application has to be ...
5
votes
4answers
3k views
jdbc4 CommunicationsException
I have a machine running a java app talking to a mysql instance running on the same instance. the app
uses jdbc4 drivers from mysql. I keep getting ...
5
votes
5answers
1k views
Should I be using PreparedStatements for all my database inserts in Java?
What is the recommended method for escaping variables before inserting them into the database in Java?
As I understand, I can use PreparedStatement.setString() to escape the data, but ...
4
votes
3answers
288 views
Where is the most secure place to put MySQL connection details for PHP
Where is the most secure place to put MySQL database connection details when connecting via a PHP script?
$connection = mysql_connect($hostname, $username, $password);
if (!$connection) {die('Could ...
4
votes
8answers
9k views
Confusing PDO-only problem : Can't connect through socket/Access denied/Can't connect to server (shared host)
So the problem changed from what it was, i'll leave the original question below to prevent bad reviews on answers like I had after someone editing his question I answered :
So I am working on a ...
3
votes
3answers
101 views
Codeigniter - Connect with another database with in model
hi i have a requirements that i have to retrieve a mysql database information from master database and then connect to that database, and fetch some records.
i mean that holding one database i want ...
3
votes
4answers
152 views
Problem with static variables in java
I am using static variables pretty much heavily in my application. Now after the application status is finished I am facing a problem in garbage collection. The variables that are declares as static ...
3
votes
1answer
806 views
How to grant remote access permissions to mysql server for user?
If I do SHOW GRANTS in my mysql database I get
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY PASSWORD 'some_characters' WITH GRANT OPTION
If I am not mistaken, root@localhost ...
3
votes
2answers
251 views
MySQL Socket refuses connection after thousands of successive connections
I am currently trying to populate a MySQL5.1 database on a current Ubuntu machine with >5,000,000 entries.
Due to the program's architecture, for each INSERT statement a new database connection is ...
3
votes
1answer
84 views
Why with PHP hundreds of DB connections dont matter..but in C++ app they do?
In most web (PHP) apps, there is mysql_connect and some DB actions which means that if 1000 users is connected, 1000 connections are opened?
But with C++ app it is incredibly slow...what is the main ...
3
votes
7answers
246 views
What are the implications of opening MySQL connections over and over again in PHP
Specifically, I have a DB class that opens and closes multiple MySQL connections every time I call the Query function in the class. Should I open a connection once? or is it ok to open and close ...
3
votes
7answers
10k views
MySQL Error “Too many connections”
I am using MySQL 5.0 for a site that is hosted by GoDaddy (linux).
I was doing some testing on my web app, and suddenly I noticed that the pages were refreshing really slowly. Finally, after a long ...
3
votes
8answers
6k views
php connection pooling mysql
I am planning to use MYSQL. Is there a connection pooling extension available. or what is the normal practice for connection.
is this the one used in every where...
mysqli_connect("localhost", "xxx", ...
2
votes
1answer
49 views
try to understand mysql concepts: session v.s. connection
i'm a bit confused by mysql concepts: session vs connection.
when we are talking about connecting to mysql. we use connection terminology, as well as connection pool and etc.
however let's go to ...
2
votes
1answer
69 views
How do I leave a connection to a database open
I'm working with a mysql database, which involves gathering photos and peoples names and displaying them on a page when a dropdown menu item is selected. I am accessing the database with a php script. ...
2
votes
2answers
103 views
Encrypt a connection string, how?
I want to encrypt/hide my connection string in my database.java class. I allready searched the internet but I didn't find anything usefull, maybe I searched the wrong keywords? Here is my current ...
2
votes
1answer
70 views
Connecting and disconnecting from Mysql continuously with Excel
Newbie question....sorry
I have a simple mysql database running in our Intranet (windows server) which >20 people connect to for searching/inserting records, etc
This is done with a simple Excel GUI.
...
2
votes
2answers
67 views
cursor.description “type_code” correspondence with database field types
Using a MySQL back-end and basically want to determine the field type of tables from the type_code in the cursor.description tuples...
What I get is a bunch of different numbers... and by comparing ...
2
votes
3answers
58 views
Use PHP to authenticate information in a MySQL database from an external server
I'm not extremely familiar with how PHP's mysql_connect works, but can program very basic scripts. I joined up at a forum for forum administrators and we have been offered a partnership by a hosting ...
2
votes
2answers
81 views
Get records from mySQL using PHP and send it to VB.net
I have a PHP script which accepts an argument and adds record in the mySQL database if its not available and if its already available it gives a message 'Record already found'.
How can i read this ...
2
votes
3answers
192 views
Does “mysql_query() or die()” leave open mysql connection?
Does "mysql_query() or die()" leave open mysql connection?
My thought is that it calls die() but it never calls mysql_close() on the connection...
Thanks.
2
votes
2answers
370 views
MySQL Connector connection reuse
I have a class with a MySqlConnection object that I reuse across my application
public class MySqlWrapper : IDbConnection
{
MySqlConnection _connection = new MySqlConnection();
}
I have a few ...
2
votes
2answers
218 views
how to check the load on network connection or DB server from PHP?
I have two servers, X is the web-server (PHP) and Y is the database server (MYSQL),
how can i monitor if there is overload on the network between X and Y.
also, sometimes the response from Y is very ...
2
votes
5answers
335 views
Why Java is slow when I connect to MySQL?
If I connect with Java to MySQL in localhost server, I access instantaneously.
But if I connect out of localhost, from network PC (192.168.1.100) is very slow (4-5seg).
If I connect from public IP to ...
2
votes
3answers
453 views
How to connect MySQL to Java program
I ve installed MySQL (last update).
I need to code, that ll create & establish a connection with SQL DB
& manage the DB(using SELECT, INSERT, CREATE).
I did everything but, I am not able to ...
2
votes
2answers
540 views
How to decrease MySQL connection time
I have a JSP page. It used to work well but it becomes very slow (15 seconds to load) after the Systems team upgraded the Solaris 10 OS server.
I checked all the queries in that page and every query ...
2
votes
5answers
251 views
C# connection becomes null
I'm developing a class to manage the operations on a Mysql database.
I have the following code:
using System;
using MySql.Data.MySqlClient;
public class MysqlAccess
{
private MySqlConnection ...
2
votes
3answers
10k views
Get data to android app from mysql server
i have an mysql database with some sports results in it. I want to write an android application to display these data on mobile phones.
I´ve searched on the internet for this issue and i think it is ...
2
votes
1answer
267 views
Constant Push of SQL Server data to MySQL
Is there a way I can have a constant update of my SQL Server data going to a MySQL database?
2
votes
5answers
3k views
Connection pooling with Java and MySQL in Tomcat web application
I recently wrote and deployed a Java web application to a server and I'm finding an unusual problem which didn't appear during development or testing.
When a user logs in after so long and goes to ...
2
votes
5answers
198 views
Variables in Create Statement
I am trying to use some variables in a creation script for database setups. I am not exactly sure how to use them. Please explain how to properly format my code. Below is the code I try, and the error ...
2
votes
2answers
511 views
Connect to MySQL with hashed password?
I was wondering (and used Google with no clear result) if there is any way to connect to a MySQL database with PHP using a hashed password. Say I have the following:
Password (plain): 'foobar'
...
2
votes
1answer
646 views
caching issues in MySQL response with MySQLdb in Django
I use MySQL with MySQLdb module in Python, in Django.
I'm running in autocommit mode in this case (and Django's transaction.is_managed() actually returns False).
I have several processes interacting ...
2
votes
7answers
4k views
Python: MySQLdb Connection Problems
I'm having trouble with the MySQLdb module.
db = MySQLdb.connect(
host = 'localhost',
user = 'root',
passwd = '',
db = 'testdb',
port = 3000)
(I'm using a custom port)
the ...
2
votes
8answers
1k views
Mysql Connection Class
I'm writing some php code, and I'm frequently accessing my MySQL database to read and update fields.
My current code includes a class called dbconnnect, and I use it as follows:
class edit_data ...
1
vote
1answer
53 views
python mysql custom re-connect class does not hold server connection open
I have a custom class written in python to re-establish a mysql connection, if the current connection is dead. The only problem is, the current one always seems to be dead and is always entering into ...
1
vote
2answers
74 views
How to pass a connection code?
I am working with a JDBC, How do I actually pass my Connection code to other objects?? so that it wouldn't be so much of a hassle to keep on coding it and do I need other objects to create if I need ...
1
vote
0answers
98 views
use mysql embedded with qt?
I am trying to use mysql embedded with QT. I already have a Qt mysql plugin linked against mysqld. The plugin loads fine the embedded db but QT does not have easy ways to setup embedded options like ...
1
vote
2answers
93 views
MySQLi class pattern for connection, close, leave open?
I would like to know if creating a class like the one below would be a good practice.
So I would use the self::$mysqli object every time I need to do some work and the connection would only get ...
1
vote
3answers
3k views
CodeIgniter: Unable to connect to your database server using the provided settings Error Message
I have been using CI just fine using the MySQL driver. I want to use the mysqli driver instead, but as soon as I change it (just add the ‘i’ at the end of mysql, and added the port number) I get the ...
1
vote
2answers
87 views
PHP hangs on MySQL delete statement
I'm trying to delete one row of data from a MySQL database (innodb) in a PHP script. But instead of deleting, the PHP script hangs on the query. It's a very simple delete statement:
...
1
vote
2answers
76 views
Connect to MYSQL with VB.NET
I am trying to connect to a MYSQL database using VB.NET to handle some simple tasks at a page level. Usually the connections are made to a MYSQL database. I have downloaded a MYSQL-CONNECTOR 6.0.7. ...
1
vote
1answer
189 views
Codeigntier occasional database connection error
I'm using Codeigniter, and I have have not had any issues connecting to the database in the past.
I was doing some restructuring of the database (adding columns, inserting data, etc), and now I get ...
1
vote
1answer
285 views
Connecting to MDB2 in PHP object
$dsn="mysql://$db_username:$db_password@$db_hostname/$db_database";
global $mdb2;
$mdb2=MDB2::connect($dsn);
if (PEAR::isError($mdb2))
{
die($mdb2->getMessage());
}
I do this to connect to my ...
1
vote
1answer
155 views
vb.net-mysql - many connections from many computers with the same user and password?
I'm working on a vb.net application connecting to mysql db which will have alot of users using it.
How should I deal with the user registration?
I mean, I used to create a table with a username and ...