Questions tagged [massive]

A single file database access tool based on .NET 4 dynamics made by Rob Conery.

Code and documentation: https://github.com/robconery/massive

99 questions
0
votes
1 answer

Massive ORM remove column SQLite

I am using the Massive ORM for a wpf application. I have screen with listview and needs to be populated with two tables (one being master data). E.g. I am populating the list of Employees and Salaries along with the Department name in a single…
Shankar
  • 157
  • 1
  • 14
0
votes
1 answer

Massive ORM and sql in function

I can't seem to find any good examples but what is the best way to do a query like this tbl.Query(SELECT * FROM PRODUCTS WHERE ProductId IN (@Ids)", idlist) I see that Dapper ORM, you can just put in a list and it knows what to do. Can you do this…
user204588
  • 1,613
  • 4
  • 31
  • 50
0
votes
1 answer

BuildCommands argument in Rob Conery's Massive

I am using Rob Conery's Massive. The method List BuildCommands(params object[] things), according to the methods comments, is supposed to take objects that "can be POCOs, Anonymous, NameValueCollections, or Expandos". But this: var x =…
Manolo
  • 1,597
  • 4
  • 21
  • 35
0
votes
2 answers

Reading from multiple tables using Rob Conery's Massive

I recently started using Rob Conery's Massive for reading from an Oracle database in C#. It's working really well. However, recently I came across a problem when trying to perform an inner join. Usually you just do this to specify what table you are…
Marty Cochrane
  • 679
  • 2
  • 13
  • 26
0
votes
2 answers

what is the differnce between entity framewok and massive ORM?

I had been researching on various ORM when I came across ORM called "Massive". Can anyone give me the difference between Massive and Entity framework 4. Which one is better?
Mridul Raj
  • 1,001
  • 4
  • 19
  • 46
0
votes
1 answer

How to make a connection to a database via Massive

How to make a connection to a database via Massive? There is a method in Massive for opening a connection, but it accepts name of a connection string. I want to give it the connection string. How can I do this?
petko_stankoski
  • 10,459
  • 41
  • 127
  • 231
-1
votes
2 answers

Machine Generation of Art Patterns in Vector Fields

I am trying to rewrite this article:We draw, programming. Machine-generated generation of artistic patterns in vector fields (Russian language) from pseudo-code in Python. I am new to ML, hence the following question arises: How to build a grid of…
6 crimes
  • 3
  • 3
-5
votes
1 answer

Replace elements of array C with units

I have a one-dimensional array where I need to replace the array elements after the smallest element with one, but I don't know what I need to write to make this condition work? I will be grateful for your help. #include #include…
-5
votes
1 answer

How to copy massive data to clipboard

I have an array [1, 2, 56, 32, 54] or something. How do i send it to clipboard 1 2 56 32 54 I tried this. Loop % table.MaxIndex() { meow := table[A_Index] Clipboard := meow"`r" }
1 2 3 4 5 6
7