Tagged Questions

0
votes
2answers
40 views

C# DataTable: Add new row throws error using AutoInc field

I have a collection List<Employee> employees; I use a DataTable, and load all the records (from MDB table) when Form1.Loads, and add these records to the List (Collectio …
1
vote
2answers
62 views

MySql autoincrement column increases by 10 problem

I am a user of a some host company which serves my MySql database. Due to their replication problem, the autoincrement values increses by 10, which seems to be a common problem. …
1
vote
4answers
47 views

postgresql nextval generating existing values

I had to migrate from a mySql based ruby on rails app to using postgresql. No problems but one so far, and I don't know how to solve it. The migration of data brought ids along w …
2
votes
5answers
62 views

Change the step auto_increment fields increment by

How do I change the amount auto_increment fields in MySQL increment by from the default (1) to n?
0
votes
1answer
63 views

SubSonic PrimaryKey not autoincrement

Does current version of SubSonic support PrimaryKey (Int) which is not Autoincrement? How? PS: If I don't use SimpleRepository() I can save new record with assigned Id so more or …
0
votes
2answers
38 views

How to add an increment(1) to the value of an element with JQuery

<span id="shortfall" style="color:black">$row[shortfall]</span> How to increase $row[shortfall] to $row[shortfall]+1 with JQuery?
0
votes
3answers
90 views

What is an elegant way to make two fields auto increment?

In SQL Server, I have two fields, one is primary and has an identity (AN_ID) then I have another one that for legacy reasons (don't ask) has to be updated reflecting the AN_ID. Cur …
0
votes
4answers
67 views

Get current auto_increment value

I am doing mysql insert for my table using php. Autoincrement column name is "link_id" and "alias" colum is used to make SEO friendly url. During my insert, I would like to attach …
0
votes
0answers
17 views

DDLUtils and autoincrement values

When trying to use DDLUtils it always seems to take over the id values for the columns that are set to autoincrement. How can I prevent this? For example, I have a Dogs table with …
0
votes
3answers
26 views

MySQL - second sequence in table (e.g. by category)

Hi all, I'm trying to find the most efficient way to do something and would appreciate your advice! I have a table with the following columns: id category category_sequence othe …
3
votes
7answers
4k views

SQL - INSERT and catch the id auto-increment value

The best way to get auto-id value in same sql as SELECT ? Forum told adding this "; has Return Scope_Identity()" in the end of sql works in ASP. Is there a correspondant in php …
1
vote
3answers
226 views

Can I create a Rails model where the ID auto-increments from 0, not 1?

Can I create a Rails model where the ID auto-increments from 0, not 1? How? Are there any gotchas? I checked here, and it seems I can't: http://api.rubyonrails.org/classes/ActiveR …
0
votes
5answers
366 views

C#/SQL get autoincremented field value

I have a table with autoincremented primary key. In my code I am trying to receive the new autoincremented value when I execute each 'insert' query. Is there a way to do it program …
1
vote
2answers
912 views

SQL server identity column values start at 0 instead of 1

Hi, I've got a strange situation with some tables in my database starting its IDs from 0, even though TABLE CREATE has IDENTITY(1,1). This is so for some tables, but not for others …
0
votes
3answers
320 views

How to update all the autoincrement columns in a DataTable?

I have a DataTable with an "Id" column, which is an identity column in our SQL Server 2005 database. This column has the AutoIncrement property set to true. I don't fill the table …

1 2 3 next
15 30 50 per page