728x90 반응형 Study366 [No SQL] NoSQL이란 NoSQL : 비관계형 데이터베이스>> 정해진 스키마 또는 관계가 없다. >> 안에 들어있는 데이터를 Documents라고 부른다.>> 전체적인 구조는 Database > Collections > Documents 로 되어있다.>> 정해진 스키마에 해당하는 데이터만 추가 가능한 SQL과 달리, 다른 스키마의 데이터를 같은 컬렉션에 추가 할 수 있다.NoSQL인 MongoDB의 구조>> 문서는 JSON 데이터와 비슷하다.>> 같은 스키마를 같은 테이블에 넣는 것이 아닌, 관련 데이터를 동일한 컬렉션에 넣는다.>> 여러 테이블에 나누어 저장하는 것이 아닌, 하나의 컬렉션에 필요한 모든 데이터를 저장하게 된다>> 조인이라는 개념이 존재하지 않는다.>> 데이터가 자주 변경되지 않을 때 큰 장점이 된다.>> 수평.. 2024. 9. 11. Flutter Today 값 받아오는 함수 날짜도 그렇지만 날짜에는 항상 원하는 Format을 지정해서 값을 받아와야 합니다.이럴때 사용하는 라이브러리는 아래와 같습니다.https://pub.dev/packages/intl intl | Dart packageContains code to deal with internationalized/localized messages, date and number formatting and parsing, bi-directional text, and other internationalization issues.pub.dev import 'package:intl/intl.dart';라이브러리를 선언하고 아래와 같이 사용을 하시면 오늘 날짜가 yyyy-MM-dd 형식으로 리턴이 됩니다.String getToday(.. 2024. 8. 24. [flutter] Bottom Overflowed By ??? Pixels 오류 해결 해결방법Scaffold에 resizeToAvoidBottomPadding:false 를 추가하고 body를 SingleChildScrollView로 감싼다. home: Scaffold( resizeToAvoidBottomInset : false, appBar: AppBar( title: Text("Registration Page"), ), body: SingleChildScrollView( child: RegisterUserPage(), )), 출처 : https://dkswnkk.tistory.com/327 2024. 8. 24. Java Currency getDefaultFractionDigits() Method DescriptionThe Java Currency getDefaultFractionDigits() method gets the default number of this currency's fraction digits.DeclarationFollowing is the declaration for java.util.Currency.getDefaultFractionDigits() methodpublic int getDefaultFractionDigits()Learn Java in-depth with real-world projects through our Java certification course. Enroll and become a certified expert to boost your career. .. 2024. 8. 11. 이전 1 2 3 4 5 6 ··· 92 다음 728x90 반응형