A database is an organized collection of data.

learn more… | top users | synonyms (3)

0
votes
2answers
68 views

Getting ID from database and into the URI

I would like to get the ID of a value from a database and use it to delete an item. Heres my code: This code currently gets a set of records from a database, where each record has links. How can I do ...
0
votes
0answers
103 views

how to generate xml feed file from a database

I have a requirement to generate xml feed file from a database (Oracle 10g), would like to know what are the industry standard best practices / procedures that are followed to generate xml feed ? ...
0
votes
0answers
42 views

Which database is better at concorrent mass insertion? [closed]

I'm developing a system that expects over 500k insertions at a time constantly through the day. Every database that I look into are optimized for querying, but none so far was made with this in mind. ...
0
votes
2answers
621 views

How do I reference java Calendar types in an HQL select statement?

I have a simple HQL query I'm trying to execute to return a list of dates. My mapping has the dates defined as calendars. The mapping inserts can be inserted successfully without issues and retrieved ...
0
votes
2answers
99 views

Database Model for Product Customization Options

I'm in the process of designing an e-commerce where various items will have different customization options per product and am thinking of the best way to structure my database. For example, I may ...
0
votes
0answers
40 views

data-backend implementation to support reordering items in a workspace

Like Asana (https://app.asana.com/), there are many project management apps. One of the key features they should provide is a way to smoothly drag and drop project items to reorder them in a ...
0
votes
0answers
38 views

How can I found database of every worlds' school/university? [closed]

I am looking for an archive that contains each school, university and theri specialisation. Thanks.
0
votes
0answers
33 views

Storing small data on a web application

I'm developing a portal. This portal have contents (articles, books...) and there are some widgets that take a selection of this contents (like featured articles) and show them in a determinate order. ...
0
votes
1answer
34 views

How to put DB config outside .war?

I have a small web service, currently all DB config(hostname/port/username/pw) is inside a class in the project. When I export a .war file, it works fine. But what If I have to change my database? ...
0
votes
1answer
48 views

Possible issues with sqlite3_mutex_enter(v->db->mutex) on cocoa c

I have an issue with the sqlite3_mutex_enter(v->db->mutex) error message on an iOS application. The case is the following: I developed an application that is performing a sync on the application ...
0
votes
1answer
49 views

Problems extracting statistics from a MySQL table

I have a problem creating some statistics for a conference where all visitors where scanned every time they entered and left the building. I used mySQL and 'stats' table looks like this: id(int) | ...
0
votes
1answer
55 views

Problems with select distinct in wpf

I have a WPF application and when I run Select distinct query I am getting an error as Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key ...
0
votes
2answers
55 views

Large SQL dataset with hundreds of requests

Does anybody have an idea of a large sql dataset available free. It would be best if it's not dummy generated data, as I would be firing loads of requests against it. an example is ...
0
votes
0answers
101 views

datarow with special characters Giving Error?

hi i have two datatables from which i am manipulating data in on my .aspx page and i am using Devlys 010 font, so its obvious that my database contains every possible special char including single ...
0
votes
0answers
117 views

DB diagram for a Nine Men's Morris game [closed]

I'm building a game called Nine Men's Morris. It is challenge-based game and turn-based as well. The game should have a chatting feature as well. I'm planning to make a db diagram and thinking about ...
0
votes
0answers
18 views

mySQL - Any sample project on how to establish a heroku web server for deploying database?

How to establishing a web server so that I can upload my local database there to make a web service for android app. Some step-by-step instruction how to establish a DB(mySQL) Server at Heroku.
0
votes
0answers
243 views

How to populate user details in OpenAM from database?

I want to populate users in OpenAM from MySQL database. These are the steps I have followed: In OpenAM 'Access Control' tab I created new Realm 'wr'. In 'Data Stores' tab I created new 'Data Store' ...
0
votes
0answers
48 views

Making a Drivers Delivery Report in access [closed]

I have to make a report which shows which way would be the fastest for drivers to complete a delivery, the time each drop off should take and what time they should be expect to arrive back. Is this ...
0
votes
1answer
326 views

accessing Progress 4GL database for webdevelopment

Currently we develop our webapps using webspeed that comes with the progress development tools. But since the current switch to progress 10.2b we can develop software that uses .net components. Now we ...
0
votes
1answer
279 views

SAAS Multitenant DB Design

I started developing an SaaS based application and involving in Data Base design with SQL Server 2008. I am using Shared DB instance for the application. I mean only one Data base that have all the ...
0
votes
0answers
231 views

Failed to handle callback. Couldn't insert into my database

I am trying to add into a database table using an adapter where by it will get the latitude and longitude from where the user touches. Which is under my onTouchEvent. Basically I would display a menu ...
0
votes
0answers
91 views

Managing/storing sessions in database for multiple servers (services) under php

I am working on a project under ZendFramework 1.11. For a moment, it's used native php sessions mechanism (Zend_Auth_Storage_Session). But i have several problems, and decided that storing sessions ...
0
votes
0answers
31 views

rails 3 sorting a model by foreign key

I have another problem trying to order data from 1 table based on a value in a second table in my rails 3 app The table lists amounts other things a primary and secondary location choice using the id ...
0
votes
0answers
216 views

Dynamic table name in select query

How can I put a table name dynamically in a query? Suppose I have a query as shown below: Am creating a table at runtime and inserted tablename on history table. I found a table name and doing like ...
0
votes
1answer
71 views

Datagrid not populating past headers

Thanks in advance for any help. I've been working with the tutorial listed here, but have run into an issue. I'm attempting to populate a datagrid in silverlight, but when I submit the button click, ...
0
votes
0answers
41 views

Synchronizing data gathered from service with listView in efficient way

So I have this service that listens to other applications and then transforms the received data into objects to be used later by my application, more specifically, this data will be displayed in a ...
0
votes
1answer
747 views

Save entities in Database using One-To-Many relationship using Doctrine 2 and Zend Framework 2

I have got a straight forward problem, but since it got tied up with Doctrine 2 and Zend Forms, giving it a try here for support from the experts. Let me start with my entities Team Entity: /** * ...
0
votes
1answer
156 views

How to Data model with NoSQL

I and my team are all beginners with NoSQL, were still wearing the Entity Framework with SQL Server 2008 on a project but with the passage of time the project was getting bigger and more complex than ...
0
votes
2answers
110 views

Can't save data to database

I'm creating my first database via c# and visual studio 2k12. I added new item, went throw all those setups and finally saw *.mdf. Then I added new table, added data and by drag&drop added ...
0
votes
1answer
44 views

Wordpress: Insert post id on publishing

I am trying to insert post id on publish to custom table but it is not adding correct id but 0 here is my function //get post id on publish function get_publishing_id($post_id) { $post= ...
0
votes
0answers
64 views

Convert to DataType DateTime but only want the time

How can i convert my column with timespan dataType (Eg: 04:04:45 ) to DateTime in HH:mm:ss format (Eg: 04:04:45)? Currently I can convert the column to datetime (Eg: 10/2/2012 4:04:45 AM) but I only ...
0
votes
2answers
247 views

Servlet Not Sending Form Data to Table

I'm creating a java servlet and trying to create a new 'lab'. However, it isn't submitting to the database. Looking at the console when the page loads it prints JDBC Driver Loaded and then when submit ...
0
votes
1answer
158 views

SQlite update is not working when switching between views in iOS

I have a Favorites view, that loads data from an sqlite database. It loads entry into cells obviously. The Favorites view class is named FavReal. I have enabled a canEditRowAtIndexPath with the ...
0
votes
0answers
33 views

Initial migration with ForeignKey relations across many apps

I have a large application with many models distributed among several apps, and I have ForeignKey relations going both ways between those apps. Something along the lines of: project - app1 - ...
0
votes
0answers
41 views

MySQL query with limit and offset is running very slow [duplicate]

Possible Duplicate: MySQL query with limit and large offset taking forever My table contains 25,000 rows and im using pagination to display all rows on page. If my page limit is set to 10 ...
0
votes
1answer
72 views

Is it posible to extract persistence unit configuration information at runtime?

I'm developing an application (JEE using JPA/Hibernate, Servlet, JSP, no framework) and I found that in a specific module it is easier to implement native SQL (instead of using ORM direct solution). ...
0
votes
2answers
84 views

assign product to a user mysql

I have a list of products and users. I'm trying to assign products to a specific user. How should I set it up in database. I don't need php code for now as I have no idea how to connect the data in ...
0
votes
1answer
246 views

where does excel store connection string [closed]

I can select several rows in Microsoft Visual Studio Team Foundation Server page of work items and export to an Excel spreadsheet. When I do this, several interesting things happen; All data from ...
0
votes
2answers
140 views

Unable to insert data into database with php

I have a problem posting data in my database with a form. Very basic stuff I'm sure but Im quite stuck :/ I am able to get stuff out of my database using the select from database routine. So I know ...
0
votes
1answer
157 views

SQLite android column not found

hey guys my code is correct is assume but even though it gives error coloumn not found for _hour & _min plz help its urgent: package com.example.ifest; public class ProfileView extends ...
0
votes
1answer
46 views

Dropping MySQL Archive Databases

I have MySQL 5.0 running on a Windows 2003 server. I was trying to drop an archive database when I received this error: Error dropping database (can't rmdir './database_name/', errno: 17) There are ...
0
votes
0answers
2k views

android login activity with sqlite database [closed]

package com.example.databaseex; import android.R.string; import android.content.ContentValues; import android.content.Context; import android.database.SQLException; import ...
0
votes
2answers
822 views

how to display data from different tables column into one table column

I am trying to get data in one table's column from different tables (with same name) column in one database in SQL2008. I created one table using different tables primary key column name (e.g.- My ...
0
votes
2answers
81 views

Sql commands for showing all foreign keys/indexes

I want to debug my database in phpmyadmin/mysql. Wich is the best command to see all of the foreign keys and indexes in the database? Is there also a way to look at possible index and foreign key ...
0
votes
4answers
1k views

php checkbox from mysql

I've managed to pull records from a mysql database using php with a checkbox to select. I'm struggling to make the selected records (with the checkboxes) appear on a new page. Here is my code so far: ...
0
votes
1answer
19 views

Is brute force the only way to make an update query in access?

I am trying to make an update query in Access right now. I have two teachers who have the same data tables in a different database except for the information that they have entered in themselves. ...
0
votes
2answers
106 views

How to access app directory programatically in ios

If we create a database file programmatically, it will store in somewhere in /Users/admin/Library/Application Support/iPhone Simulator/5.1/Applications/DB425A55-5008-44D2-B08D-C21AFFBAF935/Documents. ...
0
votes
0answers
220 views

How to create a form dynamically for Database in ASP.NET MVC3

I am new to MVC3. I need to generate a form dynamically from database with different types of controls in MVC3. what would be the best way of doing it. I have a table in database named as ...
0
votes
2answers
70 views

Security for a User web application

I've been wondering about the security aspect of my application. I'm using CodeIgniter PHP Framework for my project. I'd like to know some "expert" opinions on this. I have a login function. When a ...
0
votes
1answer
24 views

Libraray/Toolkit API: How to handle composition when containing objects are not known

Could not think of a good title. I'm creating a library / toolkit for storing and searching a special kind of data (does not really matter to the question but it's chemical structures) in a database. ...

1 916 917 918 919 920 1107