mysql - Is SQuirreL SQL Client compatible with QODBC? -


does know if squirrel sql client compatible qodbc? if not there plugin squirrel enable so?

any insight appreciated have never used either.

an example of qodbc driver working java odbc bridge product

note: below example code 1 of our happy customers:

// quickbooks variables connection con =null; statement stmt = null; resultset rs = null;  // parameters quickbooks database static final string url = "jdbc:odbc:quickbooks"; // "quickbooks" system dsn name of qodbc driver // on windowsxp can set @ 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 * customer"); 

Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -