定制 jaschweder/laravel-sqlanywhere 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

jaschweder/laravel-sqlanywhere

Composer 安装命令:

composer require jaschweder/laravel-sqlanywhere

包简介

A Sybase driver based Eloquent model and Query builder for Laravel 4

README 文档

README

Adds an Sybase driver to Laravel 4, usable with Fluent and Eloquent.

#Importante! Ainda tem alguns BUGs em relação ao Schema para criar e modificar tabelas.

#Todo - Integração com Migrate, não está 100% :/ - Testes para encontrar Bugs

Installation

Add Jaschweder\laravel-sqlanywhere and Jaschweder/sql-anywhere-client as a requirement to composer.json:

{
    "require": {
        "Jaschweder/sql-anywhere-client": "dev-master",
        "Jaschweder/laravel-sqlanywhere": "dev-master"
    }
}

Update your packages with composer update or install with composer install.

Once Composer has installed or updated your packages you need to register LaravelODBC and the package it uses (extradb) with Laravel itself. Open up app/config/app.php and find the providers key towards the bottom.

Add the following to the list of providers:

'Jaschweder\SQLAnywhere\SQLAnywhereServiceProvider',

You won't need to add anything to the aliases section.

Configuration

There is no separate package configuration file for LaravelODBC. You'll just add a new array to the connections array in app/config/database.php.

		'sqlanywhere' => array(
            'host'        => 'tcpip{host=Carlos.bludata.local;port=2638}',
            'username'    => 'teste-conexao',
            'password'    => 'teste',
            'database'    => 'teste-conexao',
            'auto_commit' => true,
            'persintent'  => false,
        ),

The ODBC driver is different from the pre-installed ones in that you're going to pass in the DSN instead of having Laravel build it for you. There are just too many ways to configure an ODBC database for this package to do it for you. Some sample configurations are at php.net.

Don't forget to update your default database connection.

统计信息

  • 总下载量: 490
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-12-09