'잡동사니'에 해당되는 글 13306건
- 2019.08.11 수영장 딸린 펜션 4
- 2019.08.10 펜션 놀러옴
- 2019.08.09 postgres 문자열 타입
- 2019.08.08 postgresql - 테이블 형상 보기
- 2019.08.08 psql 테이블 목록보기
- 2019.08.08 xpath concat
- 2019.08.08 node.js xpath 모듈
- 2019.08.08 xpath syntax - attribute 검색 및 특정값 얻기
- 2019.08.08 vscode node.js 디버깅
- 2019.08.08 failed to find target with hash string 'android-27'
자연촌, 여주참숯마을 왔음
수영장도 꽤나 여려개 다양하게 있고
실내 1개
실외 5개?
일단은 실외는 전부 간이형 수영장이지만 나름 괜찮은 듯
유틸리티 쓰니 text로 생성하고
기존에 다른 사람이 생성한걸 보니 character varying으로 많이 해놔서 타입을 보니.
text = varchar (무제한)
char = char (고정 길이)
varchar = character varying (길이 제한)
타입자체가 성능에 영향을 미치지는 않는다는데.. 어느게 나으려나 고민할 필요도 없는건가..
Different from other database systems, in PostgreSQL, there is no performance difference among three character types. In most situation, you should use text or varchar, and varchar(n) if you want PostgreSQL to check for the length limit. |
[링크 : http://www.postgresqltutorial.com/postgresql-char-varchar-text/]
[링크 : https://codeday.me/ko/qa/20190305/2011.html]
'프로그램 사용 > postgreSQL' 카테고리의 다른 글
postgres sequence - auto increment (0) | 2019.08.13 |
---|---|
postgresql 변수 타입 (0) | 2019.08.12 |
postgresql - 테이블 형상 보기 (0) | 2019.08.08 |
psql 테이블 목록보기 (0) | 2019.08.08 |
pgfutter (0) | 2019.08.06 |
mysql에서는 desc tablename으로 봤는데
postgresql에서는 아래처럼 보면 된다.
\d+ tablename
[링크 : https://stackoverflow.com/questions/109325/postgresql-describe-table]
+
위 링크에서 보면 oracle은
describe tablename;
인듯
'프로그램 사용 > postgreSQL' 카테고리의 다른 글
postgresql 변수 타입 (0) | 2019.08.12 |
---|---|
postgres 문자열 타입 (0) | 2019.08.09 |
psql 테이블 목록보기 (0) | 2019.08.08 |
pgfutter (0) | 2019.08.06 |
postgres \COPY (0) | 2019.08.06 |
'프로그램 사용 > postgreSQL' 카테고리의 다른 글
postgres 문자열 타입 (0) | 2019.08.09 |
---|---|
postgresql - 테이블 형상 보기 (0) | 2019.08.08 |
pgfutter (0) | 2019.08.06 |
postgres \COPY (0) | 2019.08.06 |
union sql (0) | 2019.06.28 |
음.. 시도해보고 수정필요
해당 항목을 검색해서 그 결과를 붙여주는건 아니라 실망..
[링크 : https://stackoverflow.com/questions/21996965/concatenate-multiple-node-values-in-xpath]
[링크 : https://stackoverflow.com/questions/3398871/concatenate-multiple-attribute-values]
'Programming > xml' 카테고리의 다른 글
xpath count() (0) | 2019.09.09 |
---|---|
xpath xsi (0) | 2019.08.12 |
xpath syntax - attribute 검색 및 특정값 얻기 (0) | 2019.08.08 |
xpath.. (0) | 2019.08.01 |
xmllint string() (0) | 2019.07.25 |
이것저것 테스트 하다가 가장 무난한게 select1 인것 같고
검색이 되지 않으면 탭이나 콤마를
검색이 되었으나 값의 저장위치에 따라 value와 firstChild.data로 저장이 된다.
firstChild.data는 element 자체의 내용(content라고 해야하나 머라고 해야하나?)이 저장되는 장소이다.
var result_attr = xpath.select1(ele, doc);
// var result_ele = xpath.select(ele, doc);
if (result_attr != undefined) {
if (result_attr.value != undefined) {
// record += (result_attr.firstChild + delimiter)
record += ('"' + result_attr.value + '"' + delimiter)
// console.log(result_attr.value);
}
else {
record += ('"' + result_attr.firstChild.data + '"' + delimiter)
// console.log(result_attr.firstChild.data);
}
}
else {
record += delimiter;
}
'Programming > node.js' 카테고리의 다른 글
node.js csv2json (0) | 2019.08.21 |
---|---|
node.js regex (0) | 2019.08.12 |
xpath text() (0) | 2019.08.07 |
node.js readline과 r/w stream (0) | 2019.07.31 |
node.js xpath select() select1() (0) | 2019.07.25 |
특정 위치중에 attribute가 DB이고 값이 Gene일 경우 해당 Xref element의 ID attribute의 값을 받는 예제
(말이 어렵다 -ㅁ-)
/ClinVarSet/ReferenceClinVarAssertion/MeasureSet/Measure/MeasureRelationship/XRef[@DB='Gene']/@ID
'Programming > xml' 카테고리의 다른 글
xpath xsi (0) | 2019.08.12 |
---|---|
xpath concat (0) | 2019.08.08 |
xpath.. (0) | 2019.08.01 |
xmllint string() (0) | 2019.07.25 |
libxml2 - xmlNodeDump() (0) | 2019.07.09 |
visual studio 하듯 하면 되네?
f9로 break point 설정하고
f5로 디버깅 모드 시작
launch.json 에서 아래와 같이 args를 추가하고 array 해주면 인자가 입력된다.
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}\\test.js",
"args": ["input.txt","output.txt"]
}
]
}
[링크 : https://nodejs.org/ko/docs/guides/debugging-getting-started/]
[링크 : https://nerv2000.tistory.com/105]
[링크 : https://code.visualstudio.com/docs/nodejs/nodejs-debugging]
[링크 : https://stackoverflow.com/questions/29968919/how-to-start-nodejs-with-custom-params-from-vscode]
'Microsoft > vscode' 카테고리의 다른 글
vscode 복사시에 highlight 된 내용 복사하지 않기 (0) | 2019.12.02 |
---|---|
vscode에서 *로 검색하기 (대신 정규표현식) (0) | 2019.11.09 |
ubuntu에 vscode 설치하기 (0) | 2019.05.04 |
vscode live share? (0) | 2019.01.03 |
vscode plugin - ssh fs (0) | 2018.11.27 |
failed to find target with hash string 'android-27'
요런 에러가 발생하면 구버전 SDK를 쓰고 있는데 현재 시스템에 해당 버전의 SDK가 없어서 발생하는 에러라고 한다.
[링크 : https://elecs.tistory.com/157]
File-Settings - Appearance - System Setting - Android SDK 에서 에러에 맞는 SDK를 설치후 리빌드
[링크 : https://hunit.tistory.com/365]
error: resource android:attr/dialogCornerRadius not found.
[링크 : https://blog.soobinpark.com/149]
이건 도움을 별로 못 받았고
버전을 보니 0.7.6이 현재 깨져서 받지 못하게 된 상태라 0.7.5로 일단 변경해서 빌드는 완료
'Programming > android' 카테고리의 다른 글
안드로이드 멀티터치 처리 (0) | 2020.05.09 |
---|---|
안드로이드 http / REST 요청 앱 만들기 준비 (0) | 2020.05.09 |
android / 구글 지도 API 발급 (0) | 2019.06.21 |
android studio /dev/kvm permission denied (0) | 2019.06.11 |
ubuntu android studio (0) | 2019.06.10 |