Tagged Questions

7
votes
1answer
103 views

MySQL, C++ - Programmatically, How does MySQL Autoincrement Work?

From the latest source code (not certain if it's C or C++) of MySQL, how does it do an autoincrement? I mean, is it efficient in that it stores like a metadata resource on the table where it last left ...
6
votes
7answers
177 views

Is MySQL database access speed limited primarily by the db, or by the language used to access it?

I need to update a large db quickly. It may be easier to code in a scripting language but I suspect a C program would do the update faster. Anybody know if there have been comparative speed tests?
5
votes
2answers
2k views

How to install MySQL Connector/C on Mac OS X?

I'm writing an app in C that requires MySQL interaction, so I downloaded the Connector/C archive from the official website, and it contains bin, lib and include folders, but I don't know where to ...
5
votes
4answers
719 views

How to set a timeout for MySQL query using C API

I know there are lots of similar questions here, also there are lots of results, when I google it, but none of them answers my question. I read this, this, this and this but none of them works for me. ...
5
votes
4answers
510 views

connect to mysql using c++

is it possible to connect to an mysql database and issue queries using c++? i found some sample code from the internet but they all use mysql! so u need to install mysql first on the computer. what i ...
5
votes
2answers
3k views

MySQL: How to determine foreign key relationships programmatically?

Similar to this question but for MySQL.... How can I programmatically determine foreign key references in MySQL (assuming InnoDB)? I can almost get them with: SHOW TABLE STATUS WHERE Name = ...
5
votes
3answers
413 views

What is the best way to communicate with a MySQL server?

I am going to be using C/C++, and would like to know the best way to talk to a MySQL server. Should I use the library that comes with the server installation? Are they any good libraries I should ...
4
votes
2answers
98 views

cross-platform SQL DB API c/c++

I am writing a database application in C linux. Currently I work on mysql but later we might migrate to postgres. Therefore my boss has asked my to prepare the application to be able to use either of ...
4
votes
1answer
432 views

Valgrind Possibly Lost - MYSQL

I've recently been running one of my apps through Valgrind but there's a few MYSQL related leaks I can't fix. I put the offending code in the most basic form and tested that; I got the same leaks. ...
4
votes
4answers
2k views

How to get the mysql table columns data type?

i want to get the column data type of mysql table. Though MYSQLFIELD structure but it was enumerated field types. then i tried with "mysql_real_query() " for me the error which i am getting is ...
4
votes
5answers
225 views

RDMS for C language newbie?

What database system should a beginner in the C language use? Can I use MySQL? Thanks
3
votes
1answer
57 views

How can I know if a mysql table is updated?

Actually I use the following sentence read on another question in this page: SELECT UPDATE_TIME FROM information_schema.tables WHERE TABLE_SCHEMA = 'dbname' AND TABLE_NAME = 'tabname' But I ...
3
votes
1answer
131 views

MySQL C API Handle TEXT field

When one uses Prepared Statements in MySQL C API to handle TEXT field result, one has to specify the length of the string for an out binding: MYSQL_BIND out_bind; char ...
3
votes
1answer
69 views

C application special characters Äöü not showing up correctly in MySQL and terminal

I'm trying to set up my C application so it supports special characters such as ÄÖÜ. However, in the terminal and in my MySQL database they do not show up and are replaced with an " ?". I'm using ...
3
votes
1answer
460 views

Problems converting a C header to D

I'm trying to translating the MySql C connector 6.02 headers to D, but I get some weird crashes. My guess is I've made some mistakes on translating the structs or function (I'm not very good at C). I ...
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 ...
3
votes
4answers
76 views

Implementing a c/c++ style union as a column in MySQL

Friends, I have a strange need and cannot think my way through the problem. The great and mighty Google is of little help due to keyword recycling (as you'll see). Can you help? What I want to do ...
3
votes
1answer
1k views

Is there a standard mysql connection pooling library for C?

I have a C application using the MySQL library for database access. Is there a standard way to implement database connection pooling for such an application? The C connector doesn't appear to support ...
2
votes
4answers
106 views

MySQL and C Programming

I just have a little question with regards to connecting C to MySQL. Well, I already have an existing MySQL server installed on my system but when I tried to run my code with the #include ...
2
votes
4answers
76 views

Dictionary Search

I have a dictionary(in form of sql table) containing model numbers of mobile phones and an article(or just a line) about mobiles phones(in form of a string in php or C). I want to find out the mobile ...
2
votes
2answers
51 views

Do I need to awkward gcc option every time when compile with mysql.h?

When I use C Api for Mysql, I heard that I need to compile with gcc like gcc $(mysql_config --cflags --libs) source.c but it is tired using this awkward whenever compile c file using mysql. isn't ...
2
votes
1answer
103 views

Has anyone faced this error — Out of memory (Needed 48984 bytes)?

Has anyone faced this error: Out of memory (Needed 48984 bytes) before? Here are the details: I have a DLL file that contains some mathematical algorithms implemented. These algorithms need around ...
2
votes
2answers
124 views

Which is faster, C & MySql or PHP & MySql?

I need to perform 3 million inserts to the database (mysql). PHP seems to be slow when it comes to insertion. I just need to verify if C performs faster in executing codes.
2
votes
3answers
133 views

How to save pictures in MySQL

I want to save pictures(mostly JPEG) to MySQL database. I saw most people say save pictures elsewhere and add link to table. It is the most efficient way. But i need to encrypt my pictures and want to ...
2
votes
1answer
179 views

Preventing SQL Injection in C

I am writing a C application that takes some user input and does a few database queries. I am well aware of the risks here of SQL injection and wish to prevent it. Ideally I would use parameterized ...
2
votes
2answers
270 views

Non-GPL library that can connect to a MySQL database?

I'm looking for a C, C++, or Objective-C library that can connect to a MySQL database. I'm aware of libmysqlclient (GPL) and SQLAPI++ (non-GPL). Are there any alternatives besides SQLAPI++ that can ...
2
votes
2answers
181 views

linux c/c++ - weird if/else issue

I'm querying a mysql table which then loops through the results. One of the fields has a value of "0" in it, so when I try the following it doesn't work! while ((row2 = mysql_fetch_row(resultset2)) ...
2
votes
3answers
127 views

Accessing MySQL database from C

I am very new to MySQL. Linux. I want to create a database in MySql and using a C program I would like to populate the data from a text file into the database. I couldnt find much information on ...
2
votes
4answers
442 views

What's the best book to learn programming MySql from C/C++?

Not a generic introduction to MySql. I have one of those and also a PHP & MySql book. What's a good one to learn the C/C++ API? Or do I even need a book for that? Maybe it would be overkill?
2
votes
1answer
246 views

Is mysql_insert_id thread safe?

I'm using MySQL C API to build a db client application, and i need to get the last autoincremented value in a INSERT statement, so mysql_insert_id does. But this client is multithreaded and a piece ...
2
votes
4answers
1k views

How to access MySQL from multiple threads concurrently

We're doing a small benchmark of MySQL where we want to see how it performs for our data. Part of that test is to see how it works when multiple concurrent threads hammers the server with various ...
2
votes
10answers
798 views

How fast is MySQL compared to a C/C++ program running in the server?

Ok, I have a need to perform some intensive text manipulation operations. Like concatenating huge (say 100 pages of standard text), and searching in them etc. so I am wondering if MySQL would give me ...
2
votes
1answer
392 views

Convert MYSQL_TIME data type to char * or C++ string

I am using the MySQL C API within a C++ application. I have a column in my result set that is of the type MYSQL_TIME (part of mysql.h). Is there a way to convert MYSQL_TIME to a char* or to a C++ ...
2
votes
1answer
280 views

Call mysql SOURCE command from a C program

I want to execute some mysql statements that are stored in a text file from my C program using the mysql.h library. My inclination was to do something like the following, but this doesn't work: ...
2
votes
3answers
380 views

How do I access a char ** through ffi in plt-scheme?

I'm mocking about with plt-scheme's ffi and I have a C-function that returns a char ** (array of strings). If I declare my function as (_fun _pointer -> _pointer), how do I convert the result to a ...
1
vote
2answers
53 views

Interfacing with a mySQL database with C/C++? [closed]

Possible Duplicate: What is the best way to communicate with a MySQL server? Is there a simple way to access and modify a mySQL database on a Web Site or XAMMP using C/C++? How is this ...
1
vote
2answers
60 views

C application libmysqlclient versus ODBC

I am writing an application that needs to interface with a MySQL database. Should I use libmysql or the ODBC connector ? Are there any pros / cons beside the fact that using ODBC will allow me to ...
1
vote
1answer
72 views

MySQL C API memory leak?

Recently, I started to work on a C program that makes use of the libmysqlclient. When checking my code with valgrind, it reported memory leaks. The following minimal code snippet reproduces the ...
1
vote
2answers
90 views

Mysql, Check table and number of rows from C

I try to make function to check if table exists and to get total number of rows but I get result 1 instead of 99999. So, what should I do here to work properly? int sql_table_length(char* database, ...
1
vote
1answer
56 views

How to assign mysql result to variable (in C)

I can't assign the result of query to variable (the program is written in C). Here is what I do char buffer[100]; while ((row = mysql_fetch_row(res)) != NULL) { buffer = row[0]; } A get this ...
1
vote
1answer
109 views

MySql from C on Ubuntu

I can use mysql from terminal to query data and I try to connect to mysql server with C but here is some problem i don't know to fix but seems like version conflict. #include <my_global.h> ...
1
vote
3answers
61 views

Efficiently escaping quotes in C before passing to mysql_query

In a nutshell I typically build a MySQL query within C using sprintf i.e. sprintf(sqlcmd,"update foo set dog=\"lab\" where description=\"%s\"",some_desc); mysql_query(some_conn,sqlcmd); However if ...
1
vote
1answer
99 views

MYSQL C Connector

I have a C process that is rapidly writing to a mysql database ~10 times per second. This process uses the MySql C Connector. After about 2 minutes of running, the process hangs and in system monitor ...
1
vote
2answers
96 views

How to sanitize SQL queries in C? [closed]

Possible Duplicate: Preventing SQL Injection in C I know PHP has some built in functions that help to sanitize queries, but does C have anything like that? ...
1
vote
2answers
66 views

C API and getting raw socket

I'm writing app that needs to commuicate with mysql. Its a single threaded application that uses epoll linux system call for multiplexing clients, but the problem is that everything stalls whenever ...
1
vote
1answer
120 views

MySQL Connector / C++ Issue

I'm creating an application which makes use of the MySQL C++ Connector, the application compiles and runs fine on my development machine (Fedora 15), however when I compile and run on my other two ...
1
vote
2answers
67 views

MySQL user password problem

A few months ago I developed a program in C which interacts with a MySQL database and is running on Ubuntu. Unfortunately I forgot the user's password and now whenever I run the program I get: ...
1
vote
1answer
304 views

MySQL C API compilation error, crtdbg.h not found

I'm creating a basic C program that uses the mysql api. I'm on windows, using mingw as my compiler and eclipse cdt as my IDE. I have added the include path to the mysql include files and the lib path ...
1
vote
1answer
1k views

c program to add a user to mysql

I am going to add a user to MySQL through C program. I am going to do final year project in MySQL. Don't get me wrong if I ask wrong. I have one doubt in this concept, that is we can add a new user ...
1
vote
2answers
101 views

SQL IF and LEFT JOIN cause database to malfunction

I just encoutered a problem I never had before. When I try my SQL statement in phpmyadmin all is fine. However, once I use it in my c application with MySQL, it only works every other start. Also when ...

1 2 3 4