@@ -33,7 +33,6 @@ SQL2Excel is a powerful Node.js-based tool for generating Excel files from SQL q
3333- 🖥️ ** CLI Interface** : Simple command-line tool execution
3434- 🪟 ** Windows Batch Files** : Interactive batch files for Windows users
3535- 📄 ** XML/JSON Support** : Flexible configuration file format support
36- - 🔍 ** File Validation** : Automatic filename validation and Korean character warnings
3736- 🎯 ** Sheet-specific Styling** : Apply different styles to individual sheets
3837- 📦 ** Standalone Executable** : Generate standalone .exe files for distribution without Node.js dependency
3938- 🌐 ** Multi-language Support** : Korean and English release packages
@@ -736,17 +735,7 @@ Generate a standalone TOC file:
736735node src/excel-cli.js export --xml queries.xml
737736```
738737
739- ### 4. File Validation
740-
741- The tool automatically validates filenames and warns about Korean characters:
742-
743- ```
744- ⚠️ 경고: 파일명에 한글이 포함되어 있습니다: 샘플쿼리.xml
745- 💡 권장사항: 파일명을 영문으로 변경하세요.
746- 💡 예시: "샘플쿼리.xml" → "sample-query.xml"
747- ```
748-
749- ### 5. Database Source Information
738+ ### 4. Database Source Information
750739
751740Each sheet includes database source information:
752741
@@ -1099,35 +1088,28 @@ sql2excel.bat
10991088- Process data in smaller chunks
11001089- Increase Node.js memory limit
11011090
1102- #### 6. Korean Filename Warnings
1103- ** Problem** : Filename contains Korean characters
1104- ** Solution** :
1105- - Rename files to use English characters only
1106- - Use descriptive English names
1107- - Avoid special characters in filenames
1108-
1109- #### 7. Template Style Not Found
1091+ #### 6. Template Style Not Found
11101092** Problem** : Template style not loading
11111093** Solution** :
11121094- Check ` templates/excel-styles.xml ` file exists
11131095- Verify style ID spelling
11141096- Use ` list-styles ` command to see available styles
11151097
1116- #### 8 . Executable Not Found (Standalone)
1098+ #### 7 . Executable Not Found (Standalone)
11171099** Problem** : ` sql2excel-v*.exe file not found ` error
11181100** Solution** :
11191101- Ensure the executable file is in the same directory as ` sql2excel.bat `
11201102- Check that the executable name matches the version (e.g., ` sql2excel.exe ` )
11211103- Re-extract the release package if files are missing
11221104
1123- #### 9 . PowerShell Execution Policy (Windows)
1105+ #### 8 . PowerShell Execution Policy (Windows)
11241106** Problem** : PowerShell execution policy prevents batch file execution
11251107** Solution** :
11261108- Run Command Prompt as Administrator
11271109- Use ` cmd ` instead of PowerShell
11281110- Or set PowerShell execution policy: ` Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser `
11291111
1130- #### 10 . Missing Dependencies (Development)
1112+ #### 9 . Missing Dependencies (Development)
11311113** Problem** : Module not found errors during development
11321114** Solution** :
11331115- Run ` npm install ` to install dependencies
0 commit comments