0
votes
2answers
11 views

Database for java map service

I'm running server on Java for a map service. I need to store nearly 12 000 "places of interest" (POI). So, once I receive a request, I need to analyze all the POI and to display only the suitable ...
0
votes
1answer
51 views

multy databases for clients [closed]

I need help with databases MySQL. I am building a Customer Management System where more than 1000 users will use this system and each user will have their own clients which in turn they can have more ...
0
votes
1answer
33 views

Serialize multiple data from database of same column

I'm new to PHP and using serialized data, I have a Database which has a 2 tables, user & character. characterId has a relation with userId. An user has 2 characters, so I wanted to get the data ...
0
votes
1answer
39 views

Actual employee working hours from payroll system?

I am working on a project which involves a payroll system for Employees. My main goal is to retrieve the actual work hours for each employee, however I am a bit confused about how I should proceed ...
0
votes
1answer
48 views

Error on c# when trying to fetch multiple data from database

I have this code on c#: private void sqlConnLabel() { NoIDPenghuni = new SqlParameter(); SqlConnection con = new SqlConnection(strCon); com2 = new SqlCommand(); ...
1
vote
1answer
64 views

Python proper way to store data

I am trying to store the names each with 5 attributes.For example: name=apple attributes=[red,sweet,soft,fruit,healthy] each names and attributes will be entered by the user. And there can be as ...
2
votes
3answers
70 views

Confused about storing data from this form

I have been practicing mysql and then i have came accross a issu that i can't solve ... I am making a large form that will be able to store information from user in the database .. I have managed to ...
0
votes
0answers
17 views

Database events log or history

I want to ask: - What is Database events log as a concept ? and using for what ? Any example of event log and what store inside it.
0
votes
0answers
28 views

Database heirarcy of the world as deep as cities

I am in the process of building some software to manage a property website, which heavily depends on cross-integration with rightmoves .blm format. When uploading properties to rightmove the location ...
1
vote
1answer
27 views

For etl, where can I download data in order to construct data warehouse [duplicate]

I am using jaspersoft etl tools. But, to construct data warehouse, I need sample data. Where can I find a sample data to process them in etl tools to construct a data warehouse ?
0
votes
1answer
52 views

Pass data from jsp to html

So I have a form in my a.html file. I then pass these data to my b.jsp file and perform some queries (inserting to the database etc). Now I have another html file called "confirmation.html", which ...
-1
votes
1answer
21 views

pulling content from MYSQL database [closed]

Hellow I just had a question about pulling data from a database, namely music. I understand that I could store html in a database and give the user music in that manner but what I'm wondering is how ...
0
votes
1answer
27 views

Post-hoc inventory/queue size query

Say you have a list of events/tasks with time stamps for created, completed. Examples: Customer entering a queue, then being served Business process starting and completing Order received, order ...
-1
votes
0answers
30 views

Oracle Product for Android [closed]

Currently I'm developing applications on Android and I'm able to insert, test and analyse my application data on the Microsoft SQL server that is running on my personal computer locally. From now ...
0
votes
1answer
48 views

Google apps script resultset into html

I have made a connection to an external database and I am fetching data from a particular table. All of it works (tested by putting the results in a log). Now I want to make a GUI in html, but I don't ...
1
vote
3answers
42 views

Is there any other possible ways to fetch data from external webpages to develop a comparison-shopping website except using API?

i am really sorry if my question is not appropriate but i could not find any other easy way to collect data from external websites except using API. i feel i am missing out on somethings but i am not ...
1
vote
1answer
34 views

data modeling : gas station managing

I need to create a database to manage a gas station. I'm thinking of a basic product inventory and sales data model, but it need some changes. See ...
-1
votes
1answer
135 views

Android ORM Database [closed]

I am doing some research for techniches for future apps and am intresteded in Object databases and would to know more about those for the android platform. Can someone point me in the right ...
0
votes
1answer
74 views

SQL Database Validating String

I'm working on a Project for an online form and I can't seem to find how to get the value from the SQL database and validate it against a string e.g. Q1 in Database = A and TextBox.text = A Below is ...
0
votes
0answers
18 views

Selecting a correct data layer for an asynchronous online game

I need some help with choosing the correct data layer for my game which is an asynchronous game where the player's moves are stored on the server and later loaded for other players to see. The game ...
0
votes
0answers
134 views

Jquery PHP MYSQL text field for dynamic population of pictures in table

I have a database that has a news table, the 5th field (technically data[4] since it starts at the id field as data[0]) is a text field containing the name of my pic. Here is the code: for(var i = ...
0
votes
1answer
23 views

Creating a user login site in Wordpress

I would like to create a site in Wordpress where users are able to log in, and by log in, I do not mean log into the wordpress admin panel. Login to a members area only part of the site. How would I ...
0
votes
1answer
28 views

The best way of creating a simple voting system

I want to create a simple voting system, where people can vote for a candidate and the the votes for each candidate gets displayed on the website dynamically. No I am a front-end developer and do not ...
0
votes
3answers
114 views

Ruby on Rails - how to display data from two tables into one form

Im noobie about RoR. I use Ruby v 3. I want to display data from 2 tables into one form. My models: class Address < ActiveRecord::Base attr_accessible :city, :number, :street validates :city, ...
0
votes
2answers
15 views

let user choose from much data in database

in my database I have 301 'entries' and the user should be able to choose one of them. The problem is, that I don't want to display 301 lines with the name of every entry and a radio box next to it. ...
-5
votes
1answer
53 views

c# windows form that will share the a single database [closed]

I have a data entry windows form application using c#. I want this application to run on another pc but will share the same database. What possible solutions that I'll do?
0
votes
1answer
36 views

What is the best data type to store youtube id database?

What is the best data type to store youtube id database? p.s. youtube code(id) got 11 symbols.
0
votes
0answers
19 views

WordPress data from other database doesn't appear

Ok, i'm new on using wordpress and have problems with presenting data from database. I created a new page and edit the body of the page's theme. here is the code: <?php /*Template Name: Study ...
0
votes
1answer
61 views

Storing pictures AND a profile picture in MYSQL?

I am trying to make a page where the user has his own photos but also his own profile photo. I am uploading the actual photos to a file server then inserting the photo names into a MYSQL Database. So ...
1
vote
0answers
358 views

In Android moving the app's data whenever the app is moved from internal memory to sdcard vice versa

Is there any way to move the *data along with the app whenever the user moves the app from sdcard to internal memory and vice versa. I don't want app to handle this and would like to implement in a ...
0
votes
3answers
78 views

Database modeling for stock prices

I have recently been given the assignment of modeling a database fit to store stock prices for over 140 companies. The data will be collected every 15 min for 8.5 h each day from all these companies. ...
-5
votes
1answer
113 views

Creating A PHP file that will allow users to enter data and then it will added to my database [closed]

I'm trying to create a php file which will allow a 'customer' to add information to and when that information is added and submitted, the information should then be added on to my database. However, ...
1
vote
2answers
40 views

Does data fetch from data base effects speed of application in iOS development

i like to know about does it effect , if i fetch data every time from core data base to show it many places or i fetch data once and store it locally and use, does it effect the speed of app .please ...
0
votes
0answers
43 views

Partial data selection from linq database for Windows Phone 7

I have a huge table with user data in database. And this data is binded to a listbox in my WP7 app. I have problems with memory usage because there is too much data loading into the list and ...
-1
votes
1answer
84 views

Insert data from select in multiple tables

I have first database with two tables, buildings id city zip and buildingGallery id path These tables contains some data and they has relation one to one I have second database that contains ...
0
votes
0answers
40 views

DataAdapter. exception when filling datatable

hi i'm new in ADO.NET and can't findout where is my mistake. I use next code fore filling my table via DataAdupter: public static string GetGlobalParentIDFromLocalPath(string LocalPath) { ...
0
votes
0answers
30 views

what is the best way to display all tasks in format that use informations from few classes? How to connect this?

I'm writing an android application. I created two tables in database: task(id, name, description, categoryid, status) category(id, name, status) I want to display all tasks to do (status = 1) in ...
0
votes
0answers
39 views

How to anonymize a production database?

I'm looking for a tool to anonymize a database, awaited feature: Compatible at least with MySQL and Linux/Mac Smart replacement of data with random data looking like : username, name, email, etc ...
0
votes
3answers
54 views

How to resolve data confliction

I have several databses ,and need exchange data between them . when i export from db A import into db B, Id confliction will happen . I think out two approach ,no one satisfy me 1、 select max(id) ...
0
votes
0answers
20 views

What ways would I be able to graph selective data with as little user interaction as possible?

I currently have 21 Worksheets in Excel. In each Worksheet, there are different types separated by fiscal years. I would like to be able to have a user select the data they wish to compare and then ...
1
vote
1answer
123 views

Hive (or MySQL): Finding event of different type with maximum timestamp

I am trying to write a hive query where I am interested in the relationship between two different even types that are in the same table. For example, say my table is built like this: event_type ...
1
vote
1answer
41 views

Moving data from Mysql to Db2 [closed]

Has anyone worked on moving data from MySQL to Db2, I am looking for options to move data from mysql to Db2. Any help is much appreciated.
1
vote
1answer
32 views

make data model for locations for shipping

I am making this web app which uses a concept like ebay.. pick up stuff from local stores and deliver. The problem is they have delivery circles, and deliver to specific areas. So I was stuck on how ...
-1
votes
1answer
22 views

How to match 2 products that move in the same pattern in a large data base

How to match 2 products that move in the same pattern in a large data base? The product that i have increases 2% in period 1, 3 in period 2, 12 in peiod 3 and so on until period 12. I want to find ...
0
votes
2answers
61 views

Rails - Returning data from database to another page in rails

how can I return data from the database on another page? I can file this under: views / posts / index.htm.erb <h1>Listing posts</h1> <table> <tr> ...
1
vote
1answer
86 views

Inserting multiple data into the database with Ruby on Rails

I think this is my first question here and hope to be as clear as possible. I have the fallowing code. def index_service_name @currentService = Feed.where("name = '#{params[:name]}'").first ...
3
votes
5answers
103 views

Database storage design of large amounts of heterogeneous data

Here is something I've wondered for quite some time, and have not seen a real (good) solution for yet. It's a problem I imagine many games having, and that I can't easily think of how to solve (well). ...
0
votes
3answers
64 views

Does limiting the size of rows benefit MySQL table size?

I know that limiting the row size will keep the size at a set maximum, however, if i limit all my rows to the maximum that they will ever need, does that increase performance on the rows (i.e. take up ...
0
votes
5answers
63 views

How should I store this type of data? Maybe a database? [closed]

Alright so I'm making a program, think of it like a QnA program, or a quiz-like program where questions are currently saved in txt files along with their answers. However, as the question bank is ...
-1
votes
1answer
45 views

What would be the easiest way to extract data from a PDF and store it in a database? [closed]

I have basic programming experience, but am very open to learning more. I am looking for general direction in what I do need to learn. I need to extract data from a large amount of PDFs that all ...

1 2 3 4 5 11