All Projects → JuliaDatabases → ODBC.jl

JuliaDatabases / ODBC.jl

Licence: other
An ODBC interface for the Julia programming language

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to ODBC.jl

Cidlib
The CIDLib general purpose C++ development environment
Stars: ✭ 179 (+120.99%)
Mutual labels:  odbc
pypyodbc
pypyodbc is a pure Python cross platform ODBC interface module (pyodbc compatible as of 2017)
Stars: ✭ 39 (-51.85%)
Mutual labels:  odbc
qt-sql-example
Example Qt application that connects to SQL Server and displays a table from the database
Stars: ✭ 29 (-64.2%)
Mutual labels:  odbc
Aioodbc
aioodbc - is a library for accessing a ODBC databases from the asyncio
Stars: ✭ 206 (+154.32%)
Mutual labels:  odbc
sqt
sql query tool
Stars: ✭ 32 (-60.49%)
Mutual labels:  odbc
SACK
System Abstraction Component Kit
Stars: ✭ 18 (-77.78%)
Mutual labels:  odbc
Pyodbc
Python ODBC bridge
Stars: ✭ 2,270 (+2702.47%)
Mutual labels:  odbc
ccxx
This is a cross-platform library software library about c, c ++, unix4, posix. Include gtest, benchmark, cmake, process lock, daemon, libuv, lua, cpython, re2, json, yaml, mysql, redis, opencv, qt, lz4, oci ... https://hub.docker.com/u/oudream
Stars: ✭ 31 (-61.73%)
Mutual labels:  odbc
laravel-sybase
Connection and Laravel Eloquent driver for Sybase
Stars: ✭ 29 (-64.2%)
Mutual labels:  odbc
db.rstudio.com
Website dedicated to all things R and Databases
Stars: ✭ 13 (-83.95%)
Mutual labels:  odbc
Freesql
🦄 .NET orm, Mysql orm, Postgresql orm, SqlServer orm, Oracle orm, Sqlite orm, Firebird orm, 达梦 orm, 人大金仓 orm, 神通 orm, 翰高 orm, 南大通用 orm, Click house orm, MsAccess orm.
Stars: ✭ 3,077 (+3698.77%)
Mutual labels:  odbc
sqlalchemy exasol
SQLAlchemy dialect for EXASOL
Stars: ✭ 34 (-58.02%)
Mutual labels:  odbc
odbc2parquet
A command line tool to query an ODBC data source and write the result into a parquet file.
Stars: ✭ 95 (+17.28%)
Mutual labels:  odbc
Django Pyodbc
An ODBC-powered MS SQL Server DB backend for Django 1.4+
Stars: ✭ 194 (+139.51%)
Mutual labels:  odbc
sack.vfs
Node addon which adds a virtual file system interface; websockets; json(6) parsing; sql support(sqlite,odbc); javascript sched_yield; ssl certificate generation; more...
Stars: ✭ 29 (-64.2%)
Mutual labels:  odbc
Nanodbc
A small C++ wrapper for the native C ODBC API | Requires C++14 since v2.12
Stars: ✭ 175 (+116.05%)
Mutual labels:  odbc
laravel-db2
laravel-db2 is a simple DB2 service provider for Laravel. It provides DB2 Connection by extending the Illuminate Database component of the laravel framework.
Stars: ✭ 56 (-30.86%)
Mutual labels:  odbc
odbc-rs
Rust ODBC FFI binding
Stars: ✭ 90 (+11.11%)
Mutual labels:  odbc
oledb
A small promised based module which uses edge.js to connect to an OLE DB, ODBC or SQL database.
Stars: ✭ 28 (-65.43%)
Mutual labels:  odbc
implyr
SQL backend to dplyr for Impala
Stars: ✭ 74 (-8.64%)
Mutual labels:  odbc

ODBC

A Julia library for interacting with the ODBC API

Documentation Build Status

Installation

The package is registered in the General registry and so can be installed with Pkg.add.

julia> using Pkg; Pkg.add("ODBC")

Documentation

  • STABLEmost recently tagged version of the documentation.
  • LATESTin-development version of the documentation.

Project Status

The package is tested against Julia 1.3+ on Linux, OSX, and Windows.

Contributing and Questions

Contributions are very welcome, as are feature requests and suggestions. Please open an issue if you encounter any problems or would just like to ask a question.

Testing

To run tests locally on Linux, you need to have

  • the MariaDB ODBC connectors downloaded and in a specific directory (as per .travis.yml):

    curl -O https://downloads.mariadb.com/Connectors/odbc/connector-odbc-3.1.7/mariadb-connector-odbc-3.1.7-ga-debian-x86_64.tar.gz
    mkdir mariadb64; tar xfz mariadb-connector-odbc-3.1.7-ga-debian-x86_64.tar.gz -C mariadb64
    curl -O https://downloads.mariadb.com/Connectors/odbc/connector-odbc-3.1.7/mariadb-connector-odbc-3.1.7-ga-debian-i686.tar.gz
    mkdir mariadb32; tar xfz mariadb-connector-odbc-3.1.7-ga-debian-i686.tar.gz -C mariadb32MySQL
  • MariaDB listening on 127.0.0.1:3306 with root user root having an empty password. An easy way to do this is with docker:

    docker run -e MYSQL_ALLOW_EMPTY_PASSWORD=1  -it -p 3306:3306 mysql
  • the TRAVIS_BUILD_DIR env var set before running tests.

    env TRAVIS_BUILD_DIR=$(pwd) julia --project=@.
    julia> ]
    (ODBC) pkg> test
    
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].