Tagged Questions
0
votes
1answer
18 views
Can't read data from Firebase database with .once() function
I want to be able to read a piece of data from a Firebase database upon the onclick event of a button firing. From going through the documentation and such it seems the once() function is the way to ...
0
votes
1answer
27 views
How would you get the last 10 keys redis?
Let's say I have a database with 1,000,000 keys. Is there a way to know the last 10 keys from that database?
0
votes
1answer
48 views
How to implement web applications more efficiently?
I've been developing a website using JSF & PrimeFaces. At the time of development, I noticed that there're 2 bottlenecks for any web applications. Correct me if I'm wrong.
The bottlenecks are:
...
-3
votes
0answers
33 views
Is it possible to select database table in asp.net web application during runtime [closed]
I have an web application in which the user should be allowed to select the sql Table from their system as we see in asp.net sql DataSource.
or
How we can extract data from database during runtime...
...
-3
votes
0answers
22 views
JAVA event based push notification
My Project is written in java servlet. I want create a real time push based notification for event
performed by any user than its relevant user get notified.
0
votes
1answer
27 views
How to use neo4j in JSP
I'm making a Thesaurus on Java and my database I'm using is neo4j. Now I want to build this Thesaurus as a web application, this is a simple web app like JSP + servlet. What can I do now?
-1
votes
1answer
22 views
I want to pull random products from db and show to users without repetition. [closed]
I have a website that shows random products to shoppers who are a member. Currently I keep track of the products they see, then I insert a field in db with the product number and member number and ...
0
votes
3answers
116 views
Get data from webpages with Python
Looking to get data from a specific website with Python to upload onto Google App Engine. The idea is to create a database data to store the information on the server to retrieve and display in an web ...
0
votes
0answers
29 views
Implementing Three-Tier Database Architecture
I want to construct a simple (prototype) implementation of a three-tier database architecture.
I have managed to create basic Java class that uses the JDBC API (Layer 2) to connect to a postgres ...
0
votes
1answer
31 views
Can I assign a unique ID to a button that I can get when it is clicked?
I have a data-grid that list items from my table. I have added a column that has a button for each row that if clicked I would like the user to be able to edit that item.
As I am creating the table ...
0
votes
1answer
66 views
Database for Web Application [closed]
I want to start a web project in ASP.Net and still not decided which database to use. I have had experience with MSSQL and Oracle, but I want one that is free to the end user.
My options are: MySQL, ...
1
vote
1answer
53 views
Database-driven website with (almost) no programming
Is there any reasonably attractive approach to building a basic database-driven website with only very light/simple programming (i.e., without using PHP, Python, Ruby, .NET, etc.)? I was imagining ...
0
votes
1answer
21 views
How should I keep track of which entry to update in the database for my web app?
I'm trying to create a TODO list web app for self-learning purpose. I use JavaScript and PHP.
On client side, my app uses a global variable list_id to store the ID of a list that is currently being ...
0
votes
1answer
52 views
Web application, users and permissions (and security)
I'm designing a web application, my first serious web application. It'll have some users with different privileges (RBAC/ACL). As you can imagine, I'm a little bit worried about permission management ...
0
votes
2answers
31 views
Possible Web App Database Performance Issue
I'm working on an app for personal trainers at gyms to track their client's workouts. The way it works essentially breaks down into two groups.
There are exercises, which are pretty straightforward, ...
0
votes
3answers
61 views
mySQL insert just won't work, but will with other table
I have a mySQL issue that has me stumped for hours!
Context: I am creating a web-application to teach children different musical symbols on touch devices
Problem: after running this individual ...
1
vote
0answers
45 views
Correct use-case for redis
I am totally new to noSQL and have only really dabbled with SQL. However I can clearly see that noSQL is going to be a better fit for my applications data as it doesn't fit the traditional table ...
-1
votes
1answer
22 views
What should I do for creating a Sports points application? [closed]
I'm thinking about developing a small application for keeping the score of a volleyball match. My idea is to have DB with the match info (points, sets etc) and one authorized person who has to login ...
0
votes
1answer
45 views
Use new sql table for each “conversation” in db
I have this web application I'm developing for my major project, one of it features is messaging between registered users. The whole messaging system is created that every time when message is sent, ...
0
votes
1answer
191 views
MySQL db sync across locations
I have a web app which stores data using MySQL.
The web app is internal (not available via the internet).
I now have to deploy this application across 3 (and possibly more) locations (branch ...
0
votes
2answers
72 views
DB design clarification for developing classified website
I am about to start developing a classified web application. but I am facing certain difficulties
while building the DB design:
User can post their advertisements under different types of ...
3
votes
3answers
165 views
Best practice regarding opening/closing multiple database connections
I have a method in a web-application with a decent amount of code. In almost opposite ends of the method, I have database interaction.
Is it best practice to open/close its connection multiple times ...
0
votes
3answers
194 views
Linking C# desktop app with Rails web app [closed]
I have a Windows desktop application (developed with C# using .NET 2.0 framework) that I would like to connect to a rails web app. The scenario would ideally work as follows:
User runs the Windows ...
0
votes
2answers
43 views
Slow read-only remote database
I have a PHP webapp that has to access a remote read-only database which happens to be dead slow (8-10 seconds per query) , problem is I can't do anything about the slowness of that database, but, I ...
1
vote
1answer
48 views
How to make client PC work independently from Server
(Sorry, I don't know exactly should I ask this question here in stackoverflow or other related sites. please move it if isn't appropriate)
There are some unrelated groups of students which each group ...
0
votes
1answer
43 views
Store multimedia fileuploads through a webapp
I'm developing a webapp based on Spring with Hibernate and I want to use a MySQL database to store multimedia files through a fileupload mechanism. I don't know what is the best way to do it, I mean, ...
1
vote
1answer
78 views
Activity Feed with Riak
This week I read an interesting article which explain how the authors implemented an activity. Basically, they're using two approaches to handle activities, which I'm adapting to my scenario, so ...
1
vote
0answers
40 views
What are some examples of technologies to build a Runkeeper-like service? [closed]
I'm relatively new to programming, but keen to learn. I'm starting a project offering a similar service to Runkeeper, but for your general health. I've started programming an iOS MVP, but what ...
1
vote
1answer
443 views
How to store ascii characters in Oracle and display them correctly in a webpage?
We data-drive some text in our database, such as names of products, etc. Recently our marketing team asked us to display product names with special characters such as the registered trademark symbol ...
3
votes
1answer
49 views
Sanitise R query from web users
We're building a web form which will allow (trusted) users to input their own R queries. They will be doing stats analysis against a database.
Questions:
How dangerous is this, in its basic form? ...
0
votes
0answers
28 views
Audio player with large database. Language advice [closed]
I'm working on a new website which makes sending music between music professionals easier. Some receive more than 1000 songs a week and I want to simplify this.
In short the website contains out of ...
0
votes
1answer
30 views
Will shortening file names improved web server response?
I'm currently recreating a web application because of performance issues being the web app slows down to a crawl cause of so many files. It enables users to view,upload and download files. Currently ...
0
votes
2answers
70 views
Is it better to get all the needed data from the database once or is it better to make more often requests?
So, I have to develop a web component with a help of CQ5 (a CMS in Java based on OSGi, Sling, JCR Content Repository)
This component should do the following:
Collect answers to three questions from ...
0
votes
1answer
145 views
database & web application Server specification
i want to buy a hardware for an environment
uses Sqlsever 2012 as a database server and running an ASP.net application over .net frame work 4 as an interface
we have about 1000 user who use the we ...
0
votes
0answers
49 views
Languages/tools needed for web application development (for specific app)
I have this idea for a web application, but I have no experience in web application development. However, I do have prior programming experience. I've developed both Android and iOS apps (Java and ...
0
votes
1answer
126 views
I cannot find my ObjectDB odb file
I recently completed this tutorial,
http://www.objectdb.com/tutorial/jpa/eclipse/spring/run
It says the .odb file is created under the Tomcat directory, but I can't find the Tomcat directory. I did ...
0
votes
0answers
55 views
transforming desktop app (with 100k rows database) to an online app (for ~1M users)
Short intro:
I have a desktop application that uses a simple RDBMS database
(3 tables, many-to-many, foreign keys).
The large table's average number of rows in the DB is in the order of 100k (one ...
0
votes
0answers
149 views
Play! Framework 2 loads multiple databases very slowly
I have a series of MySQL databases which I have laid out in the conf/application.conf file of my Play! application. There is no default database, but eight other databases (used for regional setups ...
2
votes
3answers
58 views
Basic about Verification
In the web application, of course in many case we will support CRUD(Create, Retriever, Update, Delete)
Basic programmer will do something like bellow(without Verification ) :
delete?room_id=12
...
-4
votes
2answers
79 views
running a java program on a website [closed]
I have a Java program that takes a few user inputs relating to real estate ( lot size, bed room, pool preference etc*) I want to create a website or webApp that takes the user input and sends it to ...
3
votes
1answer
40 views
Storing list of actions in Rails app
I need some advice. I'm making an app that is a little complicated to learn. It has a user model. Once a user signs up, I'd like a modal dialog to appear the first time (and only the first time) ...
0
votes
1answer
23 views
How do online stores handle 2 customers that add the last item to their cart?
I'm making a store web app for a college class. I'm wondering what do stores like Amazon do when there is only 1 item left?
Do they let multiple customers add the last item to their cart, and ...
0
votes
1answer
39 views
SproutCore: Setting up proxy in Buildfile doesn't work
I added the following line in my buildfile:
proxy "/tasks", :to => "localhost:3000"
Yet, the error I get is GET http://localhost:4020/tasks 404 (Not Found).
Which means, the proxy setup hasn't ...
0
votes
0answers
37 views
database for web application - query like “and” and “or” of tags
I have to choose the best architecture for the web application I'm thinking about. The specifications are:
storing of images (amazonS3), or link to youtube video (directly in the DB, i suppose)
...
0
votes
1answer
39 views
Creating “Archive” database to unload application “Main” database
I want to create a web application that is supposed to contain a lot of data. I want to ask if anyone of you have ever met a system that contained two databases - main and archive. I want to create a ...
0
votes
0answers
79 views
Dynamic Databases
I have written a lot of software, but totally new to managing databases, MVC4 etc. I am building what amounts to a simple content management system where a user can login, add images and edit ...
-2
votes
1answer
85 views
Can I do a purchase system in HTML5 or i need PHP? [closed]
Would it be correct to use HTML5 to do following:
Select color base
Select color top
Select color details
Purchase
Would I need to use PHP & MySQL? Or can I just use HTML5 and a database?
0
votes
0answers
55 views
Web Application Frameworks with Account Handling, Databases & Data Visualizations?
There are a bewildering array of web application frameworks out there, and I'm trying to narrow down the field, so I hope some folks out there can give me some advice. I'm looking for a web ...
0
votes
5answers
155 views
Python Web data collecting
I am new to Python, but I have a challenge that I am trying to complete. This is not class related but I am trying to learn how to used websites with python.
I want to do the following:
Go to this ...
0
votes
2answers
376 views
Ready web query interface to SQL databases
Do you know any free tool which would constitute a web-based SQL database generic query interface, incl.:
(mainly) allowing to type in an SQL query and display the result in some nice way
the ...


