i am aware that it is not possible to do a straight AutoIncrement in MySQL using prefix.
I would like to achieve the following AI in one of my column. The column itself is VARCHAR(255).
the prefix that i want is
PB-[MMyy]-000x
Where [MMyy] will always increment depending on the current month and year. This can easily achieved using DateTime.Now(MMyy);
and x is the number that i want increment by 1 (i.e. 0001, 0002, ... 0010, 0011, etc)
so this is what i have done
string queryGetLastID = "SELECT purchase ID FROM purchase";
string lastID = exactlyOne(queryGetLastPembelianID);
string monthYear = DateTime.Now.ToString("MMyy");
if (!String.IsNullOrWhiteSpace(lastID))
{
string noPurchase = "PB-" + monthYear + String.Format("-{0:D4}", Convert.ToInt32(lastID ) + 1);
return noPurchase;
}
else
{
string noPurchase = "PB-" + monthYear + String.Format("-{0:D4}", 1);
return noPurchase ;
}
What happen here is when the user click a button, the button will call the function above, and add a new record with the new AutoIncrement.
The AutoIncrement works by: 1. Get the last ID from purchaseID 2. increment the number by 1 3. Do some string builder to create the prefix i want it to be. 4. Once the string builder has done its job, store it to database along with other columns.
My Question is....
I have a dataGridView, and i'd like to have AutoIncrement for my SKU column. The current flow is like this:
- Get the last ID from the SKUID, this is a simple AutoIncrement (type INT) by MySQL
- increment the number by 1 (just like before)
- Add the new Item along with its SKU to the datagrid (Not yet stored to database) (Repeat step 3 until there is no more item to add).
- For each row in the datagrid store it to the database.
How ever i am confuse to achieve step 3.
This is what i have done so far..
if (!String.IsNullOrWhiteSpace(lastSKUID))
{
MessageBox.Show("SKU contains 1 or more items, last ID is: " + lastSKUID);
int counter = Convert.ToInt32(lastSKUID) + 1;
string noSKU = "SKU-" + monthYear + String.Format("-{0:D4}", counter);
}
else
{
MessageBox.Show("SKU does not contain anything");
int counter = 1;
string noSKU = "SKU-" + monthYear + String.Format("-{0:D4}", counter);
}
This function is invoke everything the "Add to data grid" button is clicked by the user. I either increment the SKU number by 2 (i.e 2, 4, 6, 8) or does not increment it at all. I know there is a logic error somewhere, i just don't see it.