0
votes
1answer
19 views
How do I create a unique property in python on google app engine?
In some database technologies, for a attribute in a record, you can guarantee uniqueness of that attribute within the entire database. An example of this might be a email_address a …
0
votes
2answers
36 views
Getting error when INSERT into MySQL.
_mysql_exceptions.Warning: Incorrect string value: '\xE7\xB9\x81\xE9\xAB\x94...' for column 'html' at row 1
def getSource(theurl, moved = 0):
if moved == 1:
theurl = …
1
vote
1answer
20 views
How to upload data to database with ADO.NET
Hey all,
I have a web application that has a requirement to take data from an Excel workbook and load it to the database. I am using ADO.NET 2.0 and need to use DataSet/DataTable …
2
votes
5answers
115 views
SQL Query problem
Consider two table.Employee and Project.Employee table has fields like eid,ename.Project table has fields like pid,pname.Now,since an employee can work on many projects and a proje …
0
votes
3answers
41 views
Concurrency / Synchronization question
I have 2 programs running on 2 different machines.
Each program has a method called updateRecord that does the following 2 things:
1. Do a SELECT query on a particular record Z
2. …
0
votes
2answers
21 views
Rich database frontend - how to correctly handle low quality networks?
Hello.
I have a very limited experience of database programming and my applications that access databases are simple ones :). Until now :(. I need to create a medium-size desktop …
1
vote
1answer
21 views
Hexadecimal sequence in Oracle
Hi all,
I would like to generate 16 char length hex decimal value as sequence. My database is Oracle and would like to know is it possible to do so? I checked the SEQUENCE in Or …
0
votes
4answers
40 views
Performance tuning with SQL Server
Hi, I was trying to contact the author of a book I am reading on SQL Server query performance, but it seems the e-mail address provided in the book does not exis any more. So I dec …
6
votes
3answers
110 views
Database versioning in installed applications using Delphi.
I'm working on a number of Delphi applications that will need to upgrade their own database structures in the field when new versions are released and when users choose to install …
1
vote
6answers
214 views
How Should I Implement a Huge but Simple Indexed StringList in Delphi?
I am using Delphi 2009. I have a very simple data structure, with 2 fields:
A string that is the key field I need to retrieve by and is usually 4 to 15 characters in length.
A st …
0
votes
2answers
29 views
Database free NUnit tests
How can I test my code (TDD) for standard CRUD operations without having a database. Is it possible to achieve such level of isolation so that my code is database independent.
Th …
0
votes
3answers
27 views
postgresql doesn’t starts after editing the postgresql.conf
Hi all,
I tried to enlarge the value of the "shared_buffers" settings to be larger then a default 24Mb, and the server doesn't starts with other values (I tried some) except of the …
0
votes
1answer
13 views
Generating surrogate keys remotely
Hi Guys,
Sorry in advance as this question is similar (but not the same!) to others.
Anyway, I need to be able to generate surrogate keys in more than one location to be synchron …
0
votes
5answers
40 views
PL/SQL…if inside a select?
I'm pretty new when it comes to PL/SQL, and I have to modify someone else's stored procedure.
Is it possible to add an if statement in the middle of a select? The procedure I hav …
0
votes
2answers
27 views
How to delete a row from DB (*.mdb) in c#
Hello,
I have an access DB (.mdb) named: Programs, with one table named: Data. By using the DataGridView I present the data from the table Data. I want to delete a row from the Dat …
