Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
998 views

Cheapest way to to determine if a MySQL connection is still alive

I have a pool of MySQL connections for a web-based data service. When it starts to service a request, it takes a connection from the pool to use. The problem is that if there has been a significant ...
4
votes
2answers
207 views

ODBC vs MySQLClient

I'm currently using ODBC to connect to my MySQL database, using C#. I've been told that using the MySql Connector would be better, and faster, and not dependent on Windows. Can someone shed some ...
3
votes
2answers
62 views

I seem to 'break' my mysql client when I type in a Postgres command. Any ideas how to undo this?

Note: I'm using a bash shell on a nearly-fresh osx 10.6 install. This doesn't seem to happen to a friend who is on zsh I'm used to Postgres, so I often instinctually type \d tablename instead of ...
3
votes
5answers
1k views

gcc wont compile and run MySQL C libraries

#include <my_global.h> #include <mysql.h> int main(int argc, char **argv) { printf("MySQL client version: %s\n", mysql_get_client_info()); } ~$ gcc -o mysql-test MySQL-Test.c im ...
2
votes
2answers
259 views

C MySQL client library behaviour

I have a client application that connects to the MySQL database 4 server using stock libraries on SuSE SLES 9. However, at times when processing a particular reset set from the server, iterating ...
1
vote
3answers
74 views

mysql client - select * minus a set of columns

When using the mysql client, I'm working on some tables that have like 10 columns plus 4 columns of meta information (created_at,created_at_utc, update_at, updated_at_utc - similar to rails). I'm ...
1
vote
2answers
414 views

Trouble installing mysql2 gem, libmysqlclient.so.15 Load Error

veHi, I'm trying to install Rails 3.0 with Ruby 1.9.2. on a Linux box. I'm behind a firewall and do not have root access on my machine so I'm trying to build everything in my home directory. I ...
1
vote
0answers
142 views

mysql client console broken for some utf-8 encoded characters

I can write my language specific characters into mysql console, but when backspacing or moving right and left on the line, it gets messed up, and I have to ctrl + c because the console can't be used ...
1
vote
1answer
334 views

How to pass parameters to mysql

During the installation I need to create new MySQL user, new database and populate it from dump file. My question is how can I do it from command line (cmd, Windows)? I mean, I'm calling for cmd from ...
0
votes
2answers
191 views

Should i use mysql persistent connect?

The situation is: i have 1 server lamp debian with 1 virtual host wirh 1 website. My mysql has 1 user accessed by that website. In this case should i use a persistent conn? Would i benefit for ...
0
votes
2answers
37 views

How to find the host where its has mysql client and path?

How to find the host where its has mysql client and path ? I can do 'which mysql' . But path would be differ and some not configurated . is there any other way to find in the host mysql client ...
0
votes
1answer
188 views

what is return error value of mysql_query in C?

folks, from the following code int a = mysql_query(conn,"INSERT into data VALUES (NULL,'tes','aja')); how come i could make sure mysql_query is do the supposed thing, because i've tried wrong sql ...
0
votes
1answer
242 views

Where's the source of mysqlclient.lib?

I have a C++ application which connects to a MySQL server. It all works fine. Currently it uses libmysql.dll. At build time I link to libmysql.lib. As far as I understand I can link to ...
0
votes
1answer
50 views

Know any tricks for navigating the MySQL CLI?

For example, ^e jumps to the beginning, ^e jumps to the end, and ^w deletes the next word. ^l is clear, ^k deletes, ^j enters, ^b goes backwards... It seems similar to bash shortcuts but still ...
0
votes
1answer
93 views

importing mysqlclient in visual basic.net

Can anyone help me on how can I import "System.Data.MySqlClient" in visual basic.net? When I'm typing that code it produce an underline to the code and having an error of undefined namespace. How ...