JDBC for SQL Server - Herong's Tutorial Examples - v3.14, by Herong Yang
JDBC-ODBC - ODBC Configuration for Flat Files
This section describes how to setup the ODBC configuration including column definitions for flat text files.
In order for the ODBC driver to work with your flat data files, I need to review and revise the ODBC configuration for my DSN, HY_FLAT. Here is what I did:
1. Run Control Panel > Administrative Tools > Data Sources (ODBC).
2. Click the System DSN tab, select HY_FLAT, Microsoft Text Driver (*.txt; *.csv), and click the Configure button.
3. Click the Options button on the ODBC Text Setup window, then click the "Define Format" button. The Define Text Format window comes up.
4. Select "user.txt" from the Tables section, and change the following settings:
Column Name Header: checked Format: Tab Delimited Rows to Scan: 25
5. Repeat the same settings for "address.txt", see the picture below:
6. Click OK to close all windows. Now my database with flat files is ready through the ODBC driver.
Notice that the ODBC driver actually stores the table file definitions in a file called schema.ini in the same directory as the flat files.
Table of Contents
JDBC (Java Database Connectivity) Introduction
Microsoft SQL Server Express Edition
Microsoft JDBC Driver for SQL Server
Microsoft JDBC Driver - Query Statements and Result Sets
Microsoft JDBC Driver - DatabaseMetaData Object
Microsoft JDBC Driver - DDL Statements
Microsoft JDBC Driver - DML Statements
SQL Server - PreparedStatement
SQL Server CLOB (Character Large Object) - TEXT
SQL Server BLOB (Binary Large Object) - BLOB
Using Connection Pool with JDBC
JDBC-ODBC Bridge Driver - sun.jdbc.odbc.JdbcOdbcDriver
►JDBC-ODBC Bridge Driver - Flat Text Files
JDBC-ODBC - Creating DSN for Flat Test File
JDBC-ODBC - Connecting to Flat Text Files
JDBC-ODBC - Getting Flat File Driver Info
JDBC-ODBC - CREATE TABLE in Flat Text Files
JDBC-ODBC - Listing Tables with meta.GetTables()
JDBC-ODBC - Tab Delimited Flat File Data
►JDBC-ODBC - ODBC Configuration for Flat Files
JDBC-ODBC - Executing Queries on Flat Files
JDBC-ODBC - Missing Flat Data Files
JDBC-ODBC Bridge Driver - MS Access