본문 바로가기

**226

[Android Studio] 신경쓰지 않아도 되는 로그캣 오류 (계속 업데이트) + 대소문자 상관없이 알파벳 순 1. E/DecorView: mWindow.mActivityCurrentConfig is null 2. E/e.newbluetooth: Unknown bits set in runtime_flags: 0x8000 3. E/Zygote: isWhitelistProcess - Process is Whitelisted 2021. 12. 4.
[Android Studio] 내장 센서 확인 기기의 사용 가능한 센서 확인하는 코드 센서 코드 짜기전에 무조건 확인하는것이 좋음,, MainActivity.java package com.example.mysensortest; import androidx.appcompat.app.AppCompatActivity; import android.content.Context; import android.hardware.Sensor; import android.hardware.SensorEvent; import android.hardware.SensorEventListener; import android.hardware.SensorManager; import android.os.Bundle; import android.widget.TextView; publi.. 2021. 11. 30.
[Oracle & C#] 메모장 만들기 Form1.cs using Oracle.ManagedDataAccess.Client; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace MEMO_PROJECT { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object se.. 2021. 10. 20.
[Oracle] ADO.NET 관계형 DB에 접근하기 위한 라이브러리 각 DBMS에 적합한 공급자가 필요 Oracle ↔ ADO.NET ↔ Visual C# NET [연결방법] - Connect(Transaction,Parameters),Command,DataReader - 연결상태 유지 -Data set 사용하지 않음 [비연결방법] - DataAdapter, Data set(메인메모리DB) [연결 시스템 종류] - System.Data.OleDb - OleDB 연결 (가장 일반적) OleDbConnection, OleDbCommand - System.Data.OracleClient (더이상 지원x) - System.Data.Access.Client **OracleConnection, OracleCommand, OracleDataRe.. 2021. 10. 19.