Metaweblog API의 기본 내용 요약....
Metaweblog API의 기본 내용 요약.... 세가지 기본 API 닫기 metaWeblog.newPost (blogid, username, password, struct, publish) returns string metaWeblog.editPost (postid, username, password, struct, publish) returns true metaWeblog.getPost (postid, username, password) returns struct 여기에 사용되는 struct... The three basic elements are title, link and description. For blogging tools that don't support titles and links, ..
2007. 9. 27.
mysql 유져 생성 쿼리.
유져 생성 CREATE USER 'Username'@'localhost' IDENTIFIED BY '********'; 유져 DB권한 설정. GRANT ON `channel` . * TO 'Username'@'localhost' WITH GRANT OPTION ; ALL PRIVILEGES 데이터/구조에 관한 모든 권한 USAGE // 데이터/구조에 관한 권한 없음. DB 데이터에 관한 구조 SELECT , INSERT , UPDATE , DELETE , DB 구조에 관한 구조. CREATE , DROP , REFERENCES , INDEX , ALTER , CREATE TEMPORARY TABLES , LOCK TABLES , CREATE VIEW , SHOW VIEW , CREATE ROUTINE, ..
2007. 8. 29.