Tagged Questions
0
votes
1answer
11 views
UCS2 and unicode C and mysql
I'm writing an application where I receive a char from network, for example char "ص" and I have the same char saved in DB from a PHP page, I can see that the char in DB is saved like this 0xd8b5 but ...
1
vote
1answer
21 views
Using a .NET CF dll in C for WinCE
I am currently developing a library in C for WinCE to work with Amazon Relational Database Service. These API's will help in managing the Amazon database instance providing functionality like scaling ...
-5
votes
0answers
27 views
mysql column names from QUERY NOT TABLE [closed]
I saw SHOW COLUMNS and desc being recommended but for a query like select 1 as somename I can't figure out how to get the column name (especially after complicated join s)
0
votes
1answer
38 views
Can I force MySQL to transmit numerical values as binary?
I've been investigating network performance of our MySQL/C++ application. I found that our clients read all values (ints, doubles, etc.) from the MYSQL C-Connector in ASCII literals. That means that ...
0
votes
2answers
47 views
stack smashing error
This is my code:
#include <mysql.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char *server = "nope";
char *user = "nope";
char *password = "nope";
...
0
votes
2answers
40 views
Issues inserting unsigned char array into database
Here's my code. It is supposed to do 254 ARP requests and store the ip and mac addresses into an unsigned char array, and after that store them into a data base. It all seems to work perfect except ...
0
votes
2answers
25 views
C mysql_num_rows() Segmentation fault
I'm trying to execute MySQL query in C, however I get a Segmentation fault while calling mysql_num_rows().
Here's the code I'm using:
char *username = "test@mail.com";
char *password = "pass";
char ...
1
vote
2answers
38 views
Can I schedule HTTP requests from Apache?
I am trying to build a website from which a user can control some switches. The switches are on remote nodes (for simplicity the nodes can extract useful data from HTTP requests). The user may set ...
2
votes
1answer
92 views
Euclidean Distance Calculation in C
I tried to calculate Euclidean distance in PHP using the following code.But the time it takes is very long. I want to test if I perform the same operation in C if it will be faster. The input datas ...
0
votes
2answers
36 views
mysql_real_escape_string() causing segmentation fault
Im working on a C program that uses the mysql.h library. This is the code:
int newproduct(){
char *name;//nombre del prducto
char *desc;//descripcion del producto
double price;//precio ...
1
vote
1answer
35 views
how to cast a mysql pointer to unsigned long
I'm having trouble converting row[1] to an unsigned long in the following program on a 64 bit linux system:
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include ...
-4
votes
1answer
58 views
How to connect C++ program to MySQL? [duplicate]
I have a game programmed in c++ that runs on a server. Long story short, the account names and passwords are stored in plain text files on the server (horrible practice, I know).
I'm trying to switch ...
0
votes
1answer
30 views
C mysql - find length of query
I have a databse with users(name, surname etc.) which i fill with php.
Than i use C to SELECT something from my table. I.E.
sprintf(query,"SELECT name FROM users WHERE id=%d", number);
res = ...
0
votes
1answer
30 views
Re-directing output of C code as input to MySQL server
I want to compile a C program related to databases in Windows. I have installed MySQL.
What I actually want to do is re-direct the output of my C code as an input command for my database.
I have ...
0
votes
0answers
51 views
How convert a MySQL test case to a c/c++ source code file?
Supposed that I have a MySQL test case mytest.test. Here are its contents:
use test;
create table t(id int, name varchar(25)) engine = falcon;
insert into t values(1, "John");
insert into t values(2, ...
0
votes
1answer
47 views
mysql_fetch_fields returns different length then expected
I need to create table in other database based on select result types. Query results can map to actual columns in table or not f.e. Select 1, c from char_length_test.
How to get actual column size ...
0
votes
0answers
52 views
dlopen load library correct,but run the program,the result is incorrect
I use dlopen, dlsym load library function. When I run the program, I met this problem:
use dlopen load function, call the function correct but the result is incorrect
don't use dlopen and call the ...
0
votes
0answers
51 views
Fetch previous row in MySQL using C APIs
I am using C-MySQL APIs to navigate through the fetched rows of MySQL.
I use MYSQL_RES *f to retrieve result for a particular query and then I am able to fetch one row at a time using ...
0
votes
0answers
33 views
MySQL per connection option to disable backslash for escape [duplicate]
Using the C API for MySQL, is there a way to disable backslash as an escape character in a string. For example, the string 'sample\string' is treated as the string with the word 'sample' and 'string' ...
0
votes
0answers
37 views
ncurses printing to screen from mysql
Sorry I am new to the c api for mysql, and I am simply trying to use the selected output of my query as a character to be printed to my ncurses window.
I am trying this:
mysql_query(conn, "SELECT 10 ...
0
votes
0answers
18 views
Accessing MySQL Tables from MySQL plugin
I need to access data from MySQL tables that are already present in a database from custom written MySQL plugin written in C. I tried accessing MySQL tables the normal way using mysql header files
...
0
votes
2answers
67 views
Suspicious memory leak when using getopt lib in MySQL?
I am posting this post on behalf of my college.
He found a suspicious memory leak when using the handle_option (MySQL getopt lib) to read config file (/etc/my.cnf)
He execute the Source code below ...
0
votes
2answers
84 views
why do we need socket name when there is port number?
I am using c to communicate with mysql
it uses mysql_real_connect() to connect to DB engine.
I am just curious about knowing "why this function require socket name and port number both?".
Can we ...
-1
votes
1answer
154 views
C code cant run select query in cron
We have a C code as below. This is how we have compiled it gcc -o get1Receive $(mysql_config --cflags) get1ReceiveSource.c $(mysql_config --libs) -lrt. I works fine when we run from the terminal. Then ...
4
votes
1answer
100 views
Access to MySql with SSL from C/C++
I've configured MySql to use SSL and it worked well in PHP. But when i'm trying to connect to the databases with a C/C++ program, it doesn't work.
Variables :
host = "localhost"
psw = "pass"
db = ...
0
votes
3answers
81 views
FUSE implementation with C and JAVA
I'm trying to make a fuse file system on top of an Mysql database, and use this from a windows client and this client request is passed on to Java Server on linux side over SAMBA!!
I need to know how ...
0
votes
1answer
80 views
Trying to connect C program to phpMyAdmin
I've been trying to successfully connect my Arduino to my phpMyAdmin server but I haven't been able to. The Arduino has some Ultrasonic sensors connected (to measure distance) and for some reason not ...
9
votes
1answer
244 views
Using Stored Function with C API & Prepared Statements
I am attempting to use a stored function with a prepared statement but not having any success.
MySQL prepares the statement but then does not execute it, no error is given, it just silently fails.
...
1
vote
1answer
54 views
Memoryleak in mysql using different thread
I am writing a simple C program to request some data from a mysql db the function does not report a memory leak when used in a single thread application, but while in a thread it does.
The function ...
3
votes
1answer
93 views
Django as a mysql proxy server?
I'm in the process of building a Django powered site that is backed by a MySQL server. This MySQL server is going to be accessed from additional sources, other than the website, to read and write ...
0
votes
0answers
65 views
Mysql Connectivity in C (Netbeans)
I am using Netbeans IDE 7.2.1 to edit the opensource log analyzer software WEBALIZER in C.
My Os is Ubuntu.I have added the header files for Mysql Connectivity (ie #include<mysql.h>).
But when ...
0
votes
2answers
163 views
Error: token “@” is not valid in preprocessor expressions
Can anyone tell me what would be the cause of the error
/mysql_com.h:306:5: error: token @ is not valid in preprocessor expressions
while this mysql_com.h file does not contain any @. So how can ...
1
vote
2answers
102 views
How to make a hash key that would match/compare to the hash similar text/html?
I would like to make a sort of hash key out of a text (in my case html) that would match/compare to the hash of other similar text
ex of matching texts:
"2012/10/01 This is my webpage #1"+ ...
1
vote
2answers
92 views
mysql.h persistent connection
Is it possible to get persistent connections with the MySQL C API, like those PHP provides? If so, how?
0
votes
2answers
54 views
unable to connect to mysql socket from C program
I am developing a C program that accesses mysql. I have the following line in my code:
sts = connect_to_server(&mysql, "localhost", "my_username",
"my_password, "my_databasename");
...
0
votes
3answers
120 views
Searching through very large rainbow table file
I am looking for the best way to search through a very large rainbow table file (13GB file). It is a CSV-style file, looking something like this:
1f129c42de5e4f043cbd88ff6360486f; somestring
...
2
votes
2answers
67 views
Why does mysql_query() print an error?
I am just starting with C and the MySQL C API. I am using mysql_query() to create a table. According to the manual, the function usage is int mysql_query(MYSQL *mysql, const char *stmt_str), and the ...
2
votes
2answers
64 views
namespace conflict in C
I have defined list_t in my project that got list module API like list_pop(). But now I have to use MySQL lib to communicate with DB, but the MySQL lib still got its list implements, and also defined ...
1
vote
3answers
154 views
MySQL UDF for reading a file from disk: MySQL keeps crashing on every second UDF call
I'm trying to create an MySQL UDF getFile() which is supposed to return the contents of a text file from a certain directory on disk. The problem is that the call works once or twice, but upon calling ...
1
vote
3answers
99 views
C forking stops after 5 children
I am working on a C program which makes a connection to a database, grabs a list of devices, then forks the requests and creates an SSH connection to that device. The issue I am having is that, the ...
0
votes
1answer
55 views
Ways pass to data between a C program and a Ruby on Rails application
I want to implement an algorithm that:
takes database objects from a Ruby on Rails application as inputs,
performs calculations on the inputs,
queries the Rails database based on the calculations, ...
2
votes
2answers
230 views
/gs option causing program to throw exception
Recently, I've been trying to make a little test program to communicate with a MySQL server in C++. I'm currently using MySQL Connector/C++ as my API to connect to my database server. It took me a ...
1
vote
1answer
44 views
delete query for mysql using c
can anyone tell me the correct query to delete values from mysql db table,in my case the table name and id are accepted from the user and the row is deleted based on id.This is my query
...
1
vote
1answer
61 views
C Realloc Append String MySQL Connector
I am attempting to loop through each database result, and have a single field from each row comma separated in a final string. I am aware that this is possible to do in MySQL alone, but I need to run ...
0
votes
2answers
65 views
Error in mysql.h
When I include mysql.h in my source file, I get all sorts of syntax errors. I'm using the cygwin gcc compiler and MysQL Windows Connector 6.0.2. I added an image of my IDE. What can I do to fix this? ...
0
votes
1answer
72 views
Cannot use mysql functions in Eclipse CDT Juno
I'm getting an error on my source file for the mysql functions Im using. I setup my inclusion path and the libraries. The error is, for example: undefined reference to _mysql_init when I call ...
0
votes
2answers
208 views
Makefile Error after adding C mysql libs Eclipse CDT
I'm using Eclipse Juno CDT.
I added the following to my project:
the mysql/includes path to the includes path setting
the libmysql.lib and zlib.lib to libraries setting
the mysql library path to ...
8
votes
4answers
457 views
How can I access MySQL InnoDB index values directly without the MySQL client?
I've got an index on columns a VARCHAR(255), b INT in an InnoDB table. Given two a,b pairs, can I use the MySQL index to determine if the pairs are the same from a c program (i.e. without using a ...
1
vote
3answers
122 views
Connecting C# to MySQL and openning connection
This is my simple code just to read something from MySQL. But want I want is to create connection and command when Form is opened and just to open connection when button is clicked and do the rest. ...
0
votes
1answer
451 views
ld cannot find libmysqlclient
I remember, years ago when I started using mySQL, it was a nightmare to set up things "just so," so that the libraries were found (especially mySQL libraries!). In my case, I believe ldconfig was the ...




