SQUirreL SQL 클라이언트가 QODBC와 호환되는지 알고있는 사람이 있습니까? 그렇지 않다면 SQuirereL을위한 플러그인이 활성화되어 있습니까?SQUirreL SQL 클라이언트는 QODBC와 호환됩니까?
아무런 통찰력도 없을 것입니다.
SQUirreL SQL 클라이언트가 QODBC와 호환되는지 알고있는 사람이 있습니까? 그렇지 않다면 SQuirereL을위한 플러그인이 활성화되어 있습니까?SQUirreL SQL 클라이언트는 QODBC와 호환됩니까?
아무런 통찰력도 없을 것입니다.
주 작업
예제 QODBC의 드라이버 :
// QuickBooks variables
Connection con =null;
Statement stmt = null;
ResultSet rs = null;
// parameters for QuickBooks database
static final String url = "jdbc:odbc:quickbooks";
// "quickbooks" is a System DSN that is the name of the QODBC driver
// On WindowsXP it can be set up at Control Panel > Administrative Tools >
// Data Sources (ODBC)
static final String driver = "sun.jdbc.odbc.JdbcOdbcDriver";
public static void main(String[] args) throws Exception {
InsertCustomers t = new InsertCustomers();
}
public InsertCustomers() throws Exception {
try {
Class.forName(driver);
con = DriverManager.getConnection(url);
stmt = con.createStatement();
System.out.println("Querying QB customer table");
rs = stmt.executeQuery("SELECT * FROM customer");
SQuirreL SQL 또는 QODBC에 직접 관련된 것은 아니지만 여전히 도움이되었습니다. – James
JDBC가 QODBC에서 지원됩니다. - 감사합니다! http://support.flexquarters.com/esupport/index.php?/Knowledgebase/Article/View/383/0/how-can-qodbc-driver-work-with-the-java-odbc-bridge-product
링크가 유용 할 수 있지만 여기에 주요 부품을 포함시킨 다음 링크를 변경하면 답변이 유효하지 않게되므로 참조 용 링크를 사용하는 것이 좋습니다. –
대신 QuickBooks에 대한 JDBC 드라이버가 필요 : 다음은 우리의 행복한 고객 중 하나에서 몇 가지 예제 코드는 . –