New Post: PostgreSQL problem
Thanks!!! the project works fine now :D sorry that I couldn't reply yesterday, I had to work in other project. But I tested your changes today and everything works like a charm!! :D now I just have to...
View ArticleNew Post: PostgreSQL problem
Npgsql has just accepted a pull request from me to fix their GetSchema error. Their next version should work perfectly!
View ArticleNew Post: PostgreSQL problem
Those are great news! I'm really glad to hear that! :D Be proud of this project, You created a really useful library. congratulations and keep going like this! Thanks a lot for your support and...
View ArticleNew Post: Reading Oracle DB Schema?
Hi all, Great lib! Ive been trying to use the reader against an oracle DB, it is quite big, 5k tables, 5k views circa, and I am using the schema owner of these objects to perform the read, but the read...
View ArticleNew Post: Reading Oracle DB Schema?
After the schema is read into memory as datatables, there's a post-read process where the model is turned into a rich object model, and then it links up all the references. For instance, bidirectional...
View ArticleNew Post: Generate Store Procedure
Hello great project my question is I ENTITIES generates well with pocoentityCodeFirst but my question is how can I do that I generate entities and once I generate the stored procedures in the schema...
View ArticleNew Post: Generate Store Procedure
You can write C# code for stored procedures by setting codeWriterSettings.WriteStoredProcedures = true The generated stored procedures use raw ADO whatever the CodeTarget. It doesn't write Code First...
View ArticleNew Post: Mono/Xamarin (on Mac) + MySQL/PostgreSQL issues...
I can use the MySqlConnection class directly just fine:String params = String.Format("Server={0};Port={1};Database={2};User ID={3};Password={4};", host, port, database, username, password); mysql = new...
View ArticleNew Post: Mono/Xamarin (on Mac) + MySQL/PostgreSQL issues...
There's a workaround :) The database reader can completely bypass the DbProviderFactories and use a specific provider's factory. DbProviderFactory factory =...
View ArticleNew Post: Generate Store Procedure
Hi if the stored procedure generates me the truth but I'm a bit newbie in c # and have not found how to execute the stored procedure that generates dbschemareader if I can give an example I would...
View ArticleNew Post: Mono/Xamarin (on Mac) + MySQL/PostgreSQL issues...
That worked great. Thanks a million. New issue on subsequent call to ReadAll()... Creating a new forum thread, since you answered this one perfectly and completely...
View ArticleNew Post: SELECT command denied to user 'myuser'@'localhost' for table 'user'...
I'm getting the following exception when calling DatabaseReader.ReadAll() against a MySQL database when logged in as a user with full proveleges for that particular database:A...
View ArticleNew Post: SELECT command denied to user 'myuser'@'localhost' for table 'user'...
The MySql connector driver does this for users: SELECT Host, User FROM mysql.user To get the list of users, 'myuser' needs to read the mysql.user table. It also needs to get other mysql metadata, such...
View ArticleNew Post: Generate Store Procedure
So taking the example of Northwind, here's how to call the "Sales by year" procedure."Sales by year" has been turned into a class called "Procedures.SalesByYear" (spaces and underscores are removed to...
View ArticleNew Post: Support for unsigned integer types coming any time soon?
Support for unsigned integer types coming any time soon? Right now all of my UNSIGNED INT columns are showing up as INT.
View ArticleNew Post: SELECT command denied to user 'myuser'@'localhost' for table 'user'...
Seems reasonable to allow read-only access to system/schema tables. Not a deal breaker. Thanks.
View ArticleNew Post: Support for unsigned integer types coming any time soon?
AFAIK unsigned INTs are MySQL only. There's no equivalent in SqlServer, Oracle, PostgreSql etc. I'll see what I can do- if I can get the information out from the Information_Schema metadata, I can use...
View ArticleNew Post: Support for unsigned integer types coming any time soon?
Sounds great. Thanks. PS: Looks like Sybase also supports unsigned types: http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc38151.1510/html/iqrefbb/X315932.htm PPS: Also, watch...
View ArticleNew Post: Support for unsigned integer types coming any time soon?
Is 1.3.4.0 (edits 34576 & 34577 on May 30) supposed to address this?
View ArticleNew Post: Column.DataType not populated
Hi, I used the DatabaseReader to read the list of tables in a database: var dbReader = new DatabaseReader(connectionString, providername); var tables = dbReader.AllTables(); I want to iterate through...
View Article