Query a Sybase Database with NXLog
                                casey1234 
                
                
            
                            
            
            
                        I'm trying to query a local Sybase database using NXLog and then write the output to a file.     
So far I'm unable to connect to the database.    
NXLog is saying that there are no drivers present.    
I'm running this on Centos7.
I'm not seeing any database drivers available.    
Do I need to download these drivers separately?    
What's the name of the correct driver for Sybase?    
Where would I find the correct file?    
```
2020-03-09 12:02:18 INFO nxlog-ce-2.10.2150 started
2020-03-09 12:02:18 ERROR failed to open tmp/output;No such file or directory
2020-03-09 12:02:18 ERROR dbi_initialize failed, no drivers present?
```
Config below:
```
    Module  im_dbi
    Driver  Sybase
    Option  host 127.0.0.1
    Option  username ********
    Option  password ********
    Option  dbname ********
    SQL     SELECT * from *******
    Module  om_file
    File    "tmp/output.out"
    Path    dbi => file
```
Any help would be appreciated.    
Thanks in advance!!
                    
                
                            