Questions tagged [fluentdata]

FluentData is a micro-ORM, similar to Dapper, which supports a fluent syntax. FluentData currently supports some of the most common relational database systems.

FluentData is a micro-ORM, similar to Dapper, which supports a fluent syntax and includes basic automapping functionality. Currently, FluentData supports some of the most common relational database systems, including:

  • MS SQL Server
  • MS SQL Server Compact 4.0
  • MS SQL Azure
  • MS Access
  • Oracle
  • MySQL
  • SQLite
  • PostgreSQL
  • IBM DB2
  • Sybase

Support requires an applicable driver to be installed, as noted in the Documentation.

11 questions
1
vote
0 answers

How to remove the unwanted characters from fluentd logs

Currently I am sending my Kubernetes logs to cloud watch using Fluentd, but when I check the logs in cloudwatch, the logs are having extra unicode characters. I tried different ways to and regexp to solve but no luck. Here is the sample how my log…
balu
  • 11
  • 2
1
vote
0 answers

Fluentd Kafka output plugin config

I'm trying to use the Kafka Producer plugin in Fluentd (version 0.7.9), first of all I would like to know if the following config looks good: @type kafka_buffered brokers mykafka:9093 topic_key my_queue #how to configure the…
Marcel
  • 21
  • 5
1
vote
0 answers

Passing User-Defined Table type using FluentData

I'm new to FluentData, and I would like to know if it's possible to pass a user-defined table type to a stored procedure using FluentData. dbContext().Sql("MyStoredProcedureName") .Parameter("MyUserDefinedTableType", DbTypes.???????) Which…
puntapret
  • 201
  • 4
  • 10
1
vote
1 answer

Lifespan of FluentData IDbContext

I am using FluentData ORM for .NET in my data access layer. However, this question may apply to most ORMs. What is the proper lifespan of the IDbContext? Should a new database context be instantiated every time a new query to the database is…
Stuart
  • 446
  • 1
  • 6
  • 19
1
vote
2 answers

C# - Passing an anonymous function as a parameter

I'm using FluentData as an orm for my database and I'm trying to create a generic query method: internal static T QueryObject(string sql, object[] param, Func mapper) { return MyDb.Sql(sql,…
Dustin Kingen
  • 20,677
  • 7
  • 52
  • 92
0
votes
1 answer

how to read spring application console logs from fluentd without writing into file

we are using spring boot java application in our project, there is some log content is missing while writing the log data into file, so in place of writing the logs into fluentd we want to ship the logs that directly generating from the console…
0
votes
1 answer

how to send tag when using server attribute in fluentd

I am very new to fluentd so this may be a very basic question. I want to send the data from my one fluentd to another one directly (using the attribute) instead of writing to the file system, but not I am not able to find a way to send the…
SwapnilM
  • 155
  • 2
  • 6
  • 16
0
votes
1 answer

How to upload 1 hour old files to S3 using fluentd?

I have successfully upload files to S3 using fluentd. I am trying to upload one hour old files to S3 using fluentd. Eg. fluentd only upload files which are 1 hour old and it should not upload files which are not 1 hour old. I only want to upload…
abc
  • 1
0
votes
2 answers

fluentd, config agent-td send request to webservice

I 'm new for fluentd. I wonder is it support send a request in fluentd-agentd. Example: when fluent have new log (from apache/nginx/rails). I want call a request http with body is log text to specify url (http://my_service.com/api/get_log) Is it…
Peter89
  • 706
  • 8
  • 26
0
votes
1 answer

SQL Query works fine in SMS but not when executing from ORM, DateTime Conversion error

I have the following query in C# using FluentData ORM. List results = Context().Sql(@"SELECT DISTINCT a.EnteredDate, bb.PK_EmployeeName, bb.EmployeeId, …
Dayan
  • 7,634
  • 11
  • 49
  • 76
0
votes
1 answer

FluentData.IDbCommand does not contain definition for 'Query' error

I'm new to using FluentData and working with an existing application that is using it. When I'm trying to build in Visual Studio I first downloaded the dll and added it as a reference. Now I get the following error: 'FluentData.IDbCommand' does…
Catto
  • 6,259
  • 2
  • 52
  • 55