일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- setInterval 중지
- pm2
- invalid data
- allow_anonymouse
- AntDesign
- setInterval clear
- 데이터테이블 데이터 넣기
- 1883
- mosquitto.conf
- setInterval 정지
- pm2 상태 확인
- setInterval 외부 정지
- listener 1883
- DatePicker
- transfer
- 맥 어드레스
- mosquitto
- DataGridView 직접 입력
- html #select #option #multiple
- pm2 설치
- pm2 시작
- c# datagridview 데이터 넣기
- 서버동기화
- datagridview 직접입력
- 공인IP
- pm2 확인
- mySQL_Replication
- timepicker
- map이 undefined가 뜰 때
- Replication
- Today
- Total
목록프로그래밍/C# (105)
개발 노트
if (dataGridView2.Rows[0].Cells[2].Value.ToString().Trim() != dataGridView2.Rows[0].Cells[9].Value.ToString().Trim()) { if(dataGridView2.Rows[0].Cells[2].Value.ToString().Trim() == "NO") { string alterTable = "ALTER TABLE " + tbl + " MODIFY `" + dataGridView2.Rows[0].Cells[7].Value.ToString() + "` " + dataGridView2.Rows[0].Cells[1].Value.ToString() not null; Create(alterTable); } else if(dataGri..
if (dataGridView2.Rows[0].Cells[3].Value.ToString().Trim() != dataGridView2.Rows[0].Cells[10].Value.ToString().Trim()) { string alterTable = "ALTER TABLE " + tbl + " ALTER COLUMN `" + dataGridView2.Rows[0].Cells[0].Value.ToString() + "` SET " + def; Create(alterTable); }
필드가 없을 겨우 if (dataGridView2.Rows[0].Cells[7].Value == null) { { string alterTable = "ALTER TABLE " + tbl + " ADD `" + dataGridView2.Rows[0].Cells[0].Value.ToString() + "` " + dataGridView2.Rows[0].Cells[1].Value.ToString() + nullable + def; Create(alterTable); } } ALTER ADD 사용하기
private static void binaryAppendData(string filename, string stringData) { using (var fileStream = new FileStream(filename, FileMode.Append, FileAccess.Write, FileShare.None)) using (var bw = new BinaryWriter(fileStream)) { bw.Write(stringData); } } https://hong-study.tistory.com/109 C# 16 : File(파일) 파일 다루기 파일 정보와 디렉토리 정보 다루기 파일(File)은 컴퓨터 저장 매체에 기록되는 데이터의 묶음이다. 디렉토리(Diretory)는 파일이 위치하는 주소로, 파일(..
// 파일 경로를 지정 합니다. string savePath = @"c:\test.txt"; // 입력 할 text 값 string textValue = lotto+"\n"; // 기존 파일에 text 값을 추가 합니다. System.IO.File.AppendAllText(savePath, textValue, Encoding.Default);
[c# 시리얼 통신 클래스 만들기] 시리얼 포트 열기 private void buttonserialPort_Click(object sender, EventArgs e) { // 1. SerialPort 클래스 객체 생성 (COM5 포트를 사용) SerialPort sp = new SerialPort("COM5"); // 2. 시리얼포트 오픈 sp.Open(); // 3. 시리얼포트에서 한 라인 읽기 string data = sp.ReadLine(); Console.WriteLine(data); // 4. 시리얼포트 닫기 sp.Close(); Console.WriteLine("Press Enter to Quit"); Console.ReadLine(); } 시리얼포트 쓰기 private void button..