목록랭귀지 (412)
아미(아름다운미소)
INSERT INTO TABLE_NAME (TIMESTAMP_VALUE) VALUES (TO_TIMESTAMP('2022-04-02 06:14:00.742000000', 'YYYY-MM-DD HH24:MI:SS.FF')); FF3 3 자리 이하의 정밀도 의미 것을 합니다. 6 자리의 정밀도까지 올릴 수 있습니다. to_timestamp(:timestamp_as_string,'MM/DD/YYYY HH24:MI:SS.FF3')
import pandas as pd df_chunk = pd.read_csv(r'/inputpath/file.csv', iterator=True, chunksize=1000000) df = pd.concat([chunk for chunk in df_chunk])
- 모바일인지 pc인체 체크하기 '모바일인지 pc인지 체크하기 Function isItMobile() Dim chk chk = False mob = "iPod|iPhone|Android|BlackBerry|SymbianOS|SCH-M\d+|Opera Mini|Windows CE|Nokia|SonyEricsson|webOS|PalmOS" splitmo = split(mob,"|") agent = Request.ServerVariables("HTTP_USER_AGENT") For i = 0 to UBound(splitmo ) If InStr(agent,splitmo (i)) > 0 Then chk = True Exit For End If Next isItMobile = chk End Function If i..
late keyword non-nullable 로 변수가 선언되면 선언과 동시에 초기값을 주어야 합니다. 그런데 어떤 경우에는 변수가 non-nullable 로 선언되기는 하지만 선언과 동시에 초기값을 줄수 없는 경우도 있습니다. 즉 변수가 null 인 상태로 이용되지는 않지만 초기값이 앱이 실행되면서 결정되는 경우입니다. 이때 late keyword 를 사용하면 됩니다. late 는 단어 뜻 그대로 초기화 시점을 뒤로 미루겠다는 의미입니다.
각 함수로 select 박스 옵션을 변경할때 용도를 정리해보겠습니다. tirigger() : 사용자가 셀렉트 박스를 변경할때와 같이 이벤트를 발생시키고 싶을때 prop() : 사용자에게 화면에만 해당 옵션을 보여줄때 이벤트가 발생하지 않음 셀렉트 박스에서 chage 이벤트가 있다면 트리거를 사용해야 하며 그저 상태값만 이동 시키고 싶다면 prop을 이용합니다. $("#itemSelect").val('1').trigger('change'); $("#itemSelect").val("1").prop("selected", true);
Function ProgIDInstalled(progID) On Error Resume Next Dim o : Set o = CreateObject(progID) ProgIDInstalled = Err.Number = 0 End Function If ProgIDInstalled("MSXML2.DOMDocument.3.0") Then ' MSXML3 is present ' End If If ProgIDInstalled("MSXML2.DOMDocument.4.0") Then ' MSXML4 is present ' End If If ProgIDInstalled("MSXML2.DOMDocument.5.0") Then ' MSXML5 is present ' End If If ProgIDInstalled("MSXM..
[Javascript] document.querySelector('input[name="radioName"]:checked').value; [JQuery] $("input[name='radioName']:checked").val();

>flutter pub outdated --mode=null-safety
MSSQL데이터형식 PARAMTER데이터형식 bigint adBigint binary adBinary bit adBoolean char adChar datetime adDate decimal adDecimal float adSingle int adInteger money adCurrency nchar adChar ntext adLongVarChar numeric adNumeric nvarchar adVarChar real adSingle smalldatetime adDate smallint adSmallInt smallmoney adCurrency sql_variant adVariant text adLongVarChar timestamp adDBTimeStamp tinyint adTinyInt varbi..