Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table:'Categories' which has two fields:Category_ID and Category. Data in Category_ID field are like 'c1','c2'. If There are 10 rows then from c1 to c10. When I insert new record in this table,how can I set the Category_ID like c11 or c12? If none of the record is deleted then its easy to set it according to number of rows.But User can delete the records. I have tried to retrieve Category_ID from the table, stored it in vector, then set one string variable which stores all category_ids separated by ';' I thought to separate c and related digit from Category_ID so that can use the next digit in insert query.

   Statement st;
   ResultSet rsCatID;

   String query="";
   String querySelect="";//used to get last category_id number,so that next value will be applied in insert query.
   Vector vCatID=new Vector();
   String strCatID="";
   String[] arrCatID;    

Then in try catch block-lines after connection,

       querySelect="select Category_ID from Categories";
       rsCatID=st.executeQuery(querySelect);
       while(rsCatID.next()){
            vCatID.add(rsCatID.getString("Category_ID").toString());
       }
       for(int i=0;i<vCatID.size();i++){
           strCatID+=vCatID.get(i).toString()+";";
       }

       System.out.println("strcatidcount=="+strCatID);

       arrCatID=strCatID.split(";");
       for(int i=0;i<arrCatID.length;i++){
            System.out.println("arrCatID=="+arrCatID[i]);
       }  

Now want to split digit from array and want to insert next value and attached it with the character 'c' and insert the whole new record. How can I split it? eg. if category_id is c3 then 3 must be stored in another array and for new record 4 ,(c4) will be inserted.

share|improve this question

2 Answers

up vote 3 down vote accepted
SELECT MAX((CAST(REPLACE(Category_ID,'C','') AS INT))) from Categories

ALTERNATIVELY:

SELECT MAX(cint(MID(Category_ID,2))) FROM Categories;

This will bring the highest intnum back

share|improve this answer
Thanks a lot. But I am using Microsfot Access so Cast function doesnt work. I have used CINT funtion, and now its working. – bsm Apr 19 '11 at 10:41
Its working in MS Access' sql view. But giving me an error while compling my java file. [Microsoft][ODBC Microsoft Access Driver] Undefined function 'REPLACE' in expression – bsm Apr 19 '11 at 11:03
It's very very weird but you can use the following function if you know that the first character will always be the one you will remove: SELECT MAX(cint(MID(Category_ID,2))) FROM Categories; – TBohnen.jnr Apr 19 '11 at 12:07
I have even tried to create a new query in ms access and pasted query with replace function and in java file, I used 'select * from query1' But still its giving the same error. Can anyone please help me here? – bsm Apr 19 '11 at 12:08
Have you tried the alternative method I've supplied, it seems the jet engine does not support the replace function even though access does? – TBohnen.jnr Apr 19 '11 at 12:21
show 8 more comments

This is way too complicated! Just use an autoincrement field. Why does the category field have to start with the letter c anyway? Why can't it just be an integer? If you need it to display starting with a 'c' in your application, you can just modify the values whenever you read them from the database, but keep them as integers in the database. That will be more efficient and allow you to avoid reinventing the wheel.

share|improve this answer
Thanks. Yes the first choice is always to use autoincrement field.But due to certain requirements,I cant use it. – bsm Apr 19 '11 at 10:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.