When I generate the DAL via SubCommander/sonic.exe I get an empty StoredProcedures.cs
All that's in it is:using System;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Data.Common;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration;
using System.Xml;
using System.Xml.Serialization;
using SubSonic;
using SubSonic.Utilities;
Does anyone have a clue why this happens?
I'm using SubSonic 2.1, all other classes are generated properly.
Edit: I tried: GRANT ALL ON PROCEDURE testDb.testStoredProc TO 'testUser'@'%'; But it doesn't appear even if the user has all privilegies to the stored proc.
Edit 2: I am using MySQL 5 database