A database is an organized collection of data.
0
votes
1answer
14 views
Fetch database comments using hibernate
I need to fetch database comments from a postgresql using hibernate. I have read the documentation but could not find any hints on how to get the comments. Basically I am generating Pojos and would ...
0
votes
3answers
17 views
Are there situations where it makes sense to store redundant data in a database, to increase speed?
In the following situation:
user has many bags
bag has many items
users
-id
bags
-id
-user_id
items
-id
-bag_id
There are 2 ways to get access to a user's items.
1) An instance method can be ...
20
votes
10answers
6k views
Generate a resultset of incrementing dates in TSQL
Consider the need to create a resultset of dates. We've got start and end dates, and we'd like to generate a list of dates in between.
DECLARE @Start datetime
,@End datetime
DECLARE ...
1
vote
3answers
30 views
get highest ids in multiple columns mysql sub query
This is the table i got:
id userid contactid
401 7 1
403 7 1
405 3 7
407 1 7
408 7 1
409 7 3
410 3 7
411 7 1
412 7 3
413 7 4
420 ...
0
votes
0answers
4 views
update_attributes won't work for nested model in Wicked wizard rails 3.2
I have two models, Bill and Camper. Bill has many campers but it will not save when I call update attributes. I receive no errors, my db just doesn't update. All of my camper values are nil but the ...
0
votes
1answer
6 views
How to auto-populate MS Access database fields?
I have an assignment to create and test database specifically on Microsoft Access. I have layed out architecture of it that means I have created tables and relations.
Yet I am not feeling ultra ...
2
votes
1answer
36 views
Join two tables using id and descendants from tree like table
I have the following tables:
CREATE TABLE element (
element_id serial PRIMARY KEY,
local_id integer,
name varchar,
CONSTRAINT fk_element_local_id FOREIGN KEY (local_id)
REFERENCES local ...
-1
votes
2answers
382 views
Session.gc_maxlifetime VS Cookies
I am coding a web app in PHP and I am using session with the famous save handler which stores session in MySQL database. I set session.gc_maxlifetime to 604800 (one week). So, I need to know for a ...
0
votes
3answers
38 views
Can we make a “forgot password” link expire after XX minutes WITHOUT altering our database?
We have a security-conscious client, and in their "forgot password" flow, an email gets sent out with a link to reset the password. Right now, that link never expires, opening a potential security ...
-1
votes
2answers
23 views
Advice on database structure and performance needed [duplicate]
I'm currently working on a site which will offer a blog for users to write.
My question relates to how to structure the database.
So all of you know how blogs are working. Some user posts an entry ...
63
votes
7answers
16k views
Has anyone used Graph-based Databases (http://neo4j.org/)? [closed]
I have used Relational DB's a lot and decided to venture out on other types available.
This particular product looks good and promising: http://neo4j.org/
Has anyone used graph-based databases? What ...
0
votes
0answers
11 views
Minimal Cover with functional dependencies (database)
I think I understand a bit how to compute the minimal cover of a set of functional dependencies.
But there's something I don't understand.
Let's say we have these functional dependencies:
H --> ...
0
votes
1answer
16 views
neo4j / cypher - why is starting node excluded?
I have a simple graph:
When I run this simple query in neoeclipse:
START me=node:node_auto_index(name="Me")
MATCH me-[:LIVES_IN]->()<-[:LIVES_IN]-(f)
RETURN f.name;
only my Girlfriend is ...
0
votes
2answers
19 views
How do you save an attribute to the database that is not coming from the form params?
I am basically trying to save a key that I am generating in the model. It is not something the user is filling out in a form. I keep getting the error when I go to /model/new
undefined method ...
0
votes
3answers
58 views
I cant figure out how to write an sql query to display the information how I want
I've gotten my database set up for my website and I'm a little baffled on how I should write the SQL query to display the information how I want it.
Here's an image of how my database is setup and an ...
0
votes
2answers
41 views
Can not bind parameter to CDbCommand
say, i am going to follow the good practice of avoiding sql injection. so this is not good:
$query="SELECT id,tag FROM tbl_tags WHERE tag LIKE '%".$tag."%' ORDER BY creation_time DESC LIMIT ...
21
votes
3answers
11k views
3
votes
1answer
50 views
How to link multiple tables to a single ID
I am trying to create a database(using PHP and MYSQL, with XAMPP) which stores information about various fast-food restaurants and their branches,together with the menu offered at their branches.I've ...
1
vote
3answers
18 views
ways to store last N messages to the database where old messages will be automatically deleted
I have a chatroom application made with pusher. I would want to store let's say the last 10 messages on the database (MySQL). So, there would be frequent writes. But, only 10 will be stored and any ...
1
vote
1answer
21 views
Heroku database push operation
To load a database which runs now on the my computer, SQL Server 2012 and Windows, I have installed Git Bash, taps and Heroku.
Now, whenever I wrote the command
heroku db:push --app myapp
it ...
0
votes
0answers
63 views
SQLBindParameter returning stored procedure
I'm writing a database program in C++, where I get output values using SQLBindParameter and SQL_PARAM_OUTPUT.
SQLBindParameter(hstmt,1, SQL_PARAM_OUTPUT, SQL_C_SSHORT, SQL_SMALLINT, 0,0, &ret,0, ...
-1
votes
2answers
23 views
MySQL creating doesn't work Error 1064
I have this query:
CREATE TABLE
`rooms` (
`roomname` VARCHAR NOT NULL PRIMARY KEY,
`price` DOUBLE NOT NULL
)
ENGINE = MyISAM";
But it doesn't work I get this error:
#1064 - You have an ...
-1
votes
1answer
26 views
How can I convert the following JSON string to Java Object by Gson?
I am having a problem to convert this json string to java object now. I have tried many ways, what I have got so far either errors like "Exception in thread "main" com.google.gson.JsonSyntaxException: ...
0
votes
1answer
39 views
Not able to get matching values from database
I have a database with two tables outdomain(domain) and uploaddata(username,domain). I have stored the values in them directly from a txt file. Now I want to select the matching data from the two ...
0
votes
2answers
32 views
don't submit form if form is empty
this is my first post and i'm rather new to php + ajax.
I have most of my coding set up only problem now is that when i press the submit button an notification shows up that only should show up when ...
1
vote
3answers
1k views
hadoop vs teradata what is the difference
I've touched a Teradata. I've never touched hadoop, but since yesterday, i am doing some research on that. By description of both, they seem quite interchangable, but in some papers it is written that ...
0
votes
0answers
7 views
How do I or is it possible to setup a database for my android mobile app to access images and audio files without using the GAE?
I have an Android mobile app half way developed, I need to add a cloud feature which accesses the files I have in a could database and displays them. Possibly through a query returning a list or ...
1
vote
1answer
15 views
Best way to structure a database where one row has to map to many rows in another table?
I am trying to create a database that will store a table of Devices and a Table of actions. Each device will be associated with multiple actions. There will be a lot of overlap between actions. For ...
0
votes
1answer
25 views
Update another table with the newly created foreign key
Could somebody advise what code should be added in order to ensure that the created new id for a one table will be updated in the table from where the ID is used ( the id from table Appointments has ...
0
votes
1answer
15 views
Input new data on C# won't be added to database SQL Server 2008
I have this code on C#
SqlParameter NoIDStaffNew, IDCabangNew, NamaStaffNew, NoTelpStaffNew, JKStaffNew, AlamatStaffNew, GajiStaffNew;
NoIDStaffNew = new SqlParameter();
...
0
votes
1answer
17 views
Object of class PDOStatement could not be converted to string When fetching a SQL statement
I'm trying to prepare, execute, fetch into my members table. But every time I tried to fetch the SQL statement I get a error.
Here is my code
<?php
include('../database.php');
$errmsg_arr = ...
0
votes
2answers
51 views
Populating a DropDown from SQL database in PHP
I'm fairly new to php and am attempting to get data from a SQL database in order to populate a couple drop downs. This is an excerpt, but I can post more if you'd like. I didn't include it all ...
3
votes
1answer
34 views
How to reference two tables in Visual Studio 2012 by adding foreign key?
I have a problem adding a foreign key to a table column.
My tables look this way. I need to reference ContactOwnerId from Contact table to UserId in UserProfile table
CREATE TABLE [dbo].[Contacts] (
...
0
votes
0answers
6 views
Need advice-should I use MS Excel or Server side scripting
I recently have requirement from private company that need to transform all data they previously collected in MS Excel file to be kept in relational database system instead.The company's staff also ...
0
votes
2answers
74 views
How to count amount of columns in sqlite from command line tool
I am trying to count the columns from a sqlite db using the sqlite command line tool. To test it I created a sample db like this:
c:\>sqlite.exe mydb.sqlite "create table tbl1(one varchar(10), two ...
0
votes
1answer
21 views
relationships in groups (+user & friends)
i have 3 tables like this
Users table
id | name
-------------
1 | s1
2 | s2
3 | s3
4 | s4
5 | s5
6 | s6
friends table
friendID | ...
2
votes
2answers
385 views
Communication between App server and DB server in Java EE
What protocol is used for communication between App server and DB server in Java EE if they are both hosted on different machines?
I mean if I use JDBC, then can I just specify IP of DB server in the ...
0
votes
4answers
39 views
How to connect an android app to a remote database?
I've been doing my own research but to no avail. I am doing an android app which contains listviews and it needs to query data from a remote database. I would really appreciate it if someone could ...
1
vote
2answers
71 views
+50
Stored Images in SqLite is taking 2x more space
I want to store jpg images in a SqLite database and I am using this code at the moment:
public byte[] ImageToByte(Image image, System.Drawing.Imaging.ImageFormat format)
{
using ...
-1
votes
3answers
38 views
Database for java map service [closed]
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
46 views
Advice on database design and table structure needed
Im new to programming and databases in general. I've read PHP.MYSQL for DUmmies 4th edition thus far, and am trying to create a database of my own which stores the Menus/Inventories of shops. I am ...
16
votes
3answers
5k views
How to configure DB Navigator for Jetbrains PHPStorm and WebStorm
I need to set up a connection in the DB Navigator plugin for PHPStorm in a mac (snow leopard). It asks me for the route of a library that implements the java.sql.Driver class. I just don't have any ...
1
vote
2answers
75 views
Designing a Database that holds Geographic Locations
I am designing an android app that will display points of interest (POIs) near you. The POIs will be stored in a database, which I would like to be able to efficiently search for the POIs near me and ...
1
vote
1answer
19 views
Searching through listview populated from a database
I am very new to android so this might sound stupid. I have a listview populated from a databse. I want to search through it and display the items in the list as the user types in the searchbox. Found ...
0
votes
2answers
362 views
Restricting MySQL connections from localhost to improve security
I heard that anyone that knows my MySQL Username and Password can access it, Even if it's listening only to localhost.
Supposing my info is as following:
USER: root
PASS: 123456
Host: LOCALHOST ...
8
votes
4answers
9k views
Differences between Database and Schema using different databases?
What are the differences in database terminology between MS SQL and MySQL?
Can a MySQL instance have more than one database? It appears that it can only create different schemas. However, the SQL ...
0
votes
3answers
28 views
Android database doesn't add/read row's
I just want to create simple database, one table with two columns: id, which will be auto incremented and data, so with my target data to store. I created this code, which doesn't return any error but ...
0
votes
1answer
18 views
Accessing Windows Phone 7 database externally
I've just started working on Windows Phone. Can anyone help me access my project database?
I've tried with ISETool.exe
I did this:
ISETool.exe ts xd 77a80316-355d-40dc-a8c3-c4054676e85c ...
0
votes
4answers
49 views
How to aggregate sum across three tables?
I have four tables like this
Table 1: MsPatient
PatientID PatientName
PA001 | Danny andrean
PA002 | John Travolta
PA003 | Danny Lee
Table 2: TransactionHeader
TransactionID PatientID ...
14
votes
2answers
4k views
Advantages / Disadvantages of pconnect option in CodeIgniter
One of the parameters in the CodeIgniter database config is the following
['pconnect'] TRUE/FALSE - Whether to use a persistent connection
What do you recommend I set this to?
Is there a ...




