Programming (109) 썸네일형 리스트형 [Go]Oracle 연결 package main import ( "database/sql" "fmt" _ "github.com/godror/godror" ) func main() { db, err := sql.Open("godror", "scott/tiger@xx.xx.xx.xx:1521/XE") if err != nil { fmt.Println(err) return } defer db.Close() rows, err := db.Query("select empno from EMP where ENAME='SMITH'") if err != nil { fmt.Println("Error running query") fmt.Println(err) return } defer rows.Close() var emp string // DB에서 .. [개발자]비대면 바이올린 강의를 위한 서비스 구축기 비대면 바이올린 강의를 위한 서비스 구축기 https://sdk.xyz/remote-violin-class/ 비대면 바이올린 강의를 위한 서비스 구축기 2021년 지란지교 패밀리데이의 드림 미래 플랫폼 주제에 아이디어 공모한 영상입니다. 0.목차 1.발단 2.목표설정 3.진행과정 4.서비스구조 5.서비스구조설명 6.구현 7.문제점 8.회고 9.앞으로의 계획 sdk.xyz [Go] Package Golang에서 Package(패키지) https://dev-yakuza.posstree.com/ko/golang/package/ [Golang] Package Golang에서 Package(패키지)에 대해 자세히 알아보고 사용하는 방법에 대해서도 알아봅시다. dev-yakuza.posstree.com [AI]Generative AI의 모든 것 (배경,기술,사례,미래) Generative AI의 모든 것 (배경,기술,사례,미래) https://eopla.net/magazines/1835?utm_source=fb&utm_medium=text-organic&utm_campaign=mg-wceo-konrad5&fbclid=IwAR1MR1lZY4_K7O91ALPSPq2DR12qze03jLdziU0JWL1B3D49YGHEduU3LcY Generative AI의 모든 것 (배경,기술,사례,미래) 투자 생태계가 경색되고 있는 가운데 호황을 누리고 있는 몇 안되는 분야가 있는데요. 바로 ‘생성 AI (Generative AI)’입니다. 생성 AI는 글로 명령을 하면 글, 그림, 비디오 등을 만들어 주는 AI eopla.net [Computer]동시성, 병렬, 비동기, 논블럭킹과 컨셉들 동시성, 병렬, 비동기, 논블럭킹과 컨셉들 동시성, 병렬, 비동기, 논블럭킹과 컨셉들 위 용어들은 모두 빠르게 실행하거나, 빠르게 느끼도록 만들때 주로 사용하는 용어들이다. 많은 사람들이 이미 적어놨으나 저도 한번 동참해보겠습니다. 차이가 있다면 되도록 이미지를 많이 black7375.tistory.com [SpringBoot]Documenting a SpringBoot REST API with OpenAPI 3 Documenting a SpringBoot REST API with OpenAPI 3 https://codersite.dev/documenting-rest-api-openapi3/?fbclid=IwAR2SjXndQb6YfhZnMD07SQxKaXuMNS3JabTp9f2vXUrIAy_aFfT9ptSTQ8o Documenting a SpringBoot REST API with OpenAPI 3 The main idea for documenting your back-end RESTful APIs with openAPIi 3 to communicate to third-party developers what your endpoints are doing codersite.dev [Go]Applying The Clean Architecture to Go applications Applying The Clean Architecture to Go applications https://manuel.kiessling.net/2012/09/28/applying-the-clean-architecture-to-go-applications/ Applying The Clean Architecture to Go applications • Manuel Kießling I would like to contribute to Uncle Bob’s concept of The Clean Architecture by demonstrating how its principles could be applied to an actual Go application. manuel.kiessling.net [Go]Go언어 oracle 연결 Go언어 oracle 연결 https://streamls.tistory.com/entry/Go%EC%96%B8%EC%96%B4-oracle-%EC%97%B0%EA%B2%B0 Go언어 oracle 연결 Go언어로 Oracle 연결하기 위한 드라이버가 몇가지가 있는데, 그 중 Setting이 간단하고 실행 가능했던 드라이버가 godror 였습니다. 아래는 참조한 사이트이구요..https://blogs.oracle.com/developers/how-to-conne streamls.tistory.com https://blogs.oracle.com/developers/post/how-to-connect-a-go-program-to-oracle-database-using-godror How to Connect a .. 이전 1 ··· 10 11 12 13 14 다음 목록 더보기