MySQL is an open-source, relational database management system.
0
votes
0answers
8 views
Would it be a good idea to install web development server and tools on flash drive?
Sometimes, I work on office computers at office and I sometimes work at home. However, I can not use GIT for some reasons with current small projects. For convenience, I am thinking to install a ...
-2
votes
0answers
17 views
How can I make my MySQL server countdown each client on the table then remove any client that's on 0:00?
Hello I am a developer/modded for the Xbox 360 and I developed a "hack" where the user uses his/hers modified console to run a plugin which connects you to Xbox live (my server) how would I monitor ...
-2
votes
1answer
22 views
Hi! I'm following this book PHP 5 Social Netowrking by Michael Peacock.I'm stuck
I'm following this book PHP 5 Social Netowrking by Michael Peacock.
I just tried his sample code on localhost but I'm getting the following error after creating a new database
Fatal error: Error ...
0
votes
2answers
14 views
Error: Unknown column 'subtract' in 'field list'
Error: Unknown column 'subtract' in 'field list'
Error No: 1054
INSERT INTO order_product SET order_id = '3', product_id = '652', name = 'Несесер NORTHLAND Big', model = 'NORTHLAND Big', price = '27', ...
0
votes
2answers
23 views
Looping through results from MYSQL query and inserting into a table
I'll try asking this question again. Hopefully making more sense this time!
I have an user editable cell on my webpage. I want to connect to MYSQL database and search a field for the text input into ...
-1
votes
0answers
7 views
Installation of Joomla 3.1 on Wamp 2.4 gets stuck [on hold]
I'm trying to install Joomla 3.1 on Wampserver 2.4. Server is working (also MySQL), I've already installed WordPress, but whenever I proceed to install Joomla, installation process gets stuck at ...
0
votes
0answers
22 views
Make a data field in MySQL database update automatically each day or week?
I have a field in a MySQL database which i want to add a certain number each day or week whichever is easier to achieve. For example i have a field with the number 2000 in it and everyday or week i ...
0
votes
0answers
14 views
Insert data to mysql table without parsing to text
I have server in c++ that recive log from client via UDP save this data in mysql
log is stored in binnary format like blow:
source 1 byte
type 1 byte
size 1 byte
seq 2 byte
timestamp 8 byte
coin 1 ...
0
votes
3answers
23 views
How can i create in incremental backups of mysql databases
I have linux centos 6.4 server with mysql5.6
I have the cron job for making hourly mysql database backups like this
Its in python
os.popen("mysqldump -u %s --password=%s -h %s -e --opt ...
-1
votes
1answer
37 views
Create pages from mysql database [on hold]
Hi I have a database with a table called products, I want it to generate a page when a url is requested with the "id" from the table is loaded so when a product with the id 23 is loaded it will show ...
0
votes
1answer
10 views
Unusual behavior adding two compound indexes on the same table
I'm not sure if compound index is the right word; what I mean is I have an index that consists of more than one column.
Problem:
My primary key consists of two columns and they work fine; columnA ...
0
votes
0answers
6 views
Refresh/Recreate All Panel in a Card Layout each time any button is clicked in JFrame Holding these Panels
I have a jFrame witch contains two panel Right Panel and LEFT PANEL.( Both are part of Split Panel)
Right Panel has a card layout.
p1=new AddPanel();
p2=new DeletePanel();
c2=new CardLayout();
...
0
votes
1answer
11 views
Nhibernate exception:“Unknown column '**.**_id' in 'field list'”
I have one class A, reference two other classes, and the map like the following
public class AMap : ClassMap<A>
{
public AMap()
{
Id(p => p.ID);
References(p => ...
0
votes
1answer
44 views
School database design
0 down vote favorite
I am trying to design a database management system with my php and intermediate MySQL knowledge putting normalization in mind.
This are the assumptions:
The school has many ...
-2
votes
0answers
11 views
Requirements for JSP and MySQL connection
What are the the drivers i need for connecting jsp with mysql? Can you explain about the Jar files needed for this function along with the exact location for these files to be placed?The server i use ...