Notice
														
												
											
												
												
													Recent Posts
													
											
												
												
													Recent Comments
													
											
												
												
													Link
													
											
									| 일 | 월 | 화 | 수 | 목 | 금 | 토 | 
|---|---|---|---|---|---|---|
| 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 | 31 | 
													Tags
													
											
												
												- MySQL
- Linux
- mssql
- flutter
- ubuntu
- 리눅스
- port
- sqlite
- PyQt
- 함수
- Unity
- PyQt5
- javascript
- 날짜
- python
- ASP
- MS-SQL
- IOS
- PER
- 유니티
- 라즈베리파이
- GIT
- tensorflow
- node.js
- pandas
- Excel
- 다이어트
- 맛집
- urllib
- swift
													Archives
													
											
											
											
											목록select (1)
아미(아름다운미소)
			
			
				pymssql CRUD 예제
				
	
	
               
           
					
					
					
					
					
					
						
					
				1 단계: 연결 합니다 pymssql.connect 함수는 SQL Database에 연결 하는 데 사용 됩니다. import pymssql conn = pymssql.connect(host='yourserver IP', user='youruserid', password='yourpassword', database='dbname') 2 단계: 쿼리를 실행 합니다. (SELECT 예제) import pymssql conn = pymssql.connect(host='yourserver IP', user='youruserid', password='yourpassword', database='dbname') cursor = conn.cursor() cursor.execute('SELECT c.CustomerID,..
				랭귀지/python
				
				2018. 8. 9. 21:38