분류 전체보기300 CRUD - Update 1. 조건 없이 전체 데이터를 변경하고 싶을 때db.getCollection('데이터베이스 명').update( // query { }, {$set: {해당 컬럼 명: NumberInt(500000)}}, //Int로 데이터를 변경 // options { "multi" : true, // update only one document "upsert" : false // insert a new document, if no existing document match the query }); 2. id가 1번인 유저의 정보를 변경하고 싶을 때db.getCollection('user_game_data').update( // query { "id":1 }, {$set: {해당 컬럼 명: NumberInt(50000.. 2017. 4. 24. CRUD - Select 1. 전체 데이터 조회- db.getCollection('데이터베이스 이름').find({}) 2. id중 1번 데이터를 찾을 때- db.getCollection('user_game_data').find({id:1}) 2017. 4. 24. 09# 중복 없는 랜덤키 값 추출 1234567891011121314151617181920212223242526272829303132public static class UniqueKey{ private static readonly char[] chars = new char[] { '1', '2', '3', '4', '5', '6', '7', '8', '9', '0' }; public static Int64 GetKey(Int32 keyLength) { Int64 uniqueKey = 0; const Int32 count = 100; for(Int32 i = 0; i result.Length) continue; uniqueKey = Convert.ToInt64(result); break; } return uniqueKey; }}Colore.. 2017. 4. 18. 쿠키런 서버 저장 데이터 2016. 6. 27. 이전 1 ··· 65 66 67 68 69 70 71 ··· 75 다음