Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
A

Ashfield

@Ashfield
About
Posts
2.0k
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Login failed. The login is from an untrusted domain and cannot be used with Windows authentication.
    A Ashfield

    ap_wooka wrote:

    Thanks captain obvious, I don't think I would have know that without your astute insight.

    1. The error message was so obvious it deserved some sarcasm. It states quite clearly what the problem is,BOL tells you how to fix it, so why post here? Simple laziness probably. 2. What was your point in replying to a post over a year old that wasn't even yours in the first place - unless you are one of those morons who has multiple logins so you can answer your own questions and look good.

    Bob Ashfield Consultants Ltd

    Database database help sql-server sysadmin security

  • Constant timer in asp.net
    A Ashfield

    What he means is, its a paid for web host, not his own server, and I wouldn't expect them to allow windows services to be installed by anyone, hence the problem.

    Bob Ashfield Consultants Ltd

    ASP.NET csharp asp-net sysadmin question

  • Setting DisplayMember & ValueMember with DataTable
    A Ashfield

    I expect its because you don't have a column called i_entiteit in your datatable - your stored procedure returns a column name of (no column name), but as it simply returns the value you pass to it anyway its pointless.

    Bob Ashfield Consultants Ltd

    .NET (Core and Framework) database help question

  • How can i forcibly make my developers to use StoredProcedure Naming conventions??
    A Ashfield

    PIEBALDconsult wrote:

    Sixth, abandon using stored procedures, they are nothing but trouble.

    That may be your opinion, but many large companies (certainly most financial institutions) insist on them for ease of deployment - if your sql is in your code (dll or whatever) and you have thousands of users worldwide, changes are far more complex than a single stored proc change (even if it does get replicated).

    Bob Ashfield Consultants Ltd

    Database question database sysadmin help

  • Inserting PDF file to SQL Server 2005 using ASP.NET C#
    A Ashfield

    Wrong forum, and have you tried google? From the first page of hits ^

    Bob Ashfield Consultants Ltd

    ASP.NET csharp database asp-net sql-server visual-studio

  • ASP
    A Ashfield

    Well don't post your crappy homework here then. Have a go yourself and come back with specific problems, not demands to do your work for you, you lazy tyke.

    Bob Ashfield Consultants Ltd

    Visual Basic database algorithms

  • ASP
    A Ashfield

    Why should I do your homework for you?

    twinkle1 wrote:

    its my need because my exams are near

    Well, what a suprise. How long have you known when your exams are? Anyway, if I write it for you (its a pretty trivial program after all) can I have your degree and wages for the next few years, because I will have earned them, you won't. Anyway, at least I hope you fail your exams as then I won't have to worry about fixing your crap over the next few years.

    Bob Ashfield Consultants Ltd

    Visual Basic database algorithms

  • Need help from freelancer to turn a Firefox Add-On into a IE extension
    A Ashfield

    Wrong site. Try rentacoder.com

    Bob Ashfield Consultants Ltd

    Web Development help question

  • ASP
    A Ashfield

    No. You write it.

    Bob Ashfield Consultants Ltd

    Visual Basic database algorithms

  • Upload data from excel file to databse.
    A Ashfield

    There are several ways, probably the easiest is to read the excel file using ODBC - although you can also do this using SQL Server Manager and importing your data if its a one off load.

    Bob Ashfield Consultants Ltd

    C# csharp question

  • Tables in Web Site.
    A Ashfield

    If something this simple is giving you problems then you need to get a decent book to learn from. Its a basic of web page design (tip search for CSS). There are loads of books and tutorials available, just try google.

    Bob Ashfield Consultants Ltd

    ASP.NET question

  • storing only single value in primary key table and storing multiple values in foreign key table
    A Ashfield

    Try using SCOPE_IDENTITY rather than IDENTITY - check BOL for the (significant) differences.

    Bob Ashfield Consultants Ltd

    Database tutorial

  • Returning 2 output parameters in Stored Procedure
    A Ashfield

    A stored proc (or any other sql query) returns zero for success and non-zero for an error

    Bob Ashfield Consultants Ltd

    Database database help

  • HOW TO RETRIVE ALL TRANSACTION from sqlserver where TODAYS DATE AS PARAMETER IN SQL QUERY.?
    A Ashfield

    Well, have you looked at what you are actually passing to the SQL? datetme.now.tostring() gives you the date AND time down to seconds, so unless your database date EXACTLY matches the system date and time nothing will be returned. 2 minutes in debug would have shown you that.

    Bob Ashfield Consultants Ltd

    C# database help question

  • Returning 2 output parameters in Stored Procedure
    A Ashfield

    You can have multiple out parameters, but you do not need to return success/failure as an out parameter. You can use standard try/catch (sql 2005/8) or raiseerror for earlier versions to check for errors. Check out BOL for more details

    Bob Ashfield Consultants Ltd

    Database database help

  • when checkboxes is selected the data should be store in two tables
    A Ashfield

    Easy, your code is wrong - what else do you expect it to be? Without seeing your code or knowing what errors you are getting someone is meant to help you fix the problem. Can you see where the problem really lies?

    Bob Ashfield Consultants Ltd

    ASP.NET csharp asp-net database sql-server sysadmin

  • Code Protection
    A Ashfield

    Good, but why not pay to advertise like everyone else.

    Bob Ashfield Consultants Ltd

    Visual Basic csharp com

  • how to write insert querry for two tables
    A Ashfield

    I am assuming you are using SQL 2005 or better. Firstly, you need to insert into the order table and get the order number by using scope_identity. Then use this to insert into the order details. The whole lot needs wrapping in a single transaction (clue - the bold words should be used for searching)

    Bob Ashfield Consultants Ltd

    Database tutorial

  • Switch colums and rows in vb.net datagrid
    A Ashfield

    Peter Leipzig wrote:

    As far as the species names as column headings. I understand your point, but for good or bad, the fishery that this program is to used in is one that is managed by the Federal Governemnt and has a management plan that identifies exactly the species involved, so adding new species will not be an issue.

    Even so, you should bear in mind that this is a bad design which, although it may not cause you problems in this instance should really not be used - better to do it right every time rather than taking shortcuts which can soon lead to general sloppiness.

    Bob Ashfield Consultants Ltd

    .NET (Core and Framework) csharp database question

  • how to create a website page ???
    A Ashfield

    Well, try searching on CP or google, there are thousands of articles - or go out and buy a book.

    Bob Ashfield Consultants Ltd

    ASP.NET csharp asp-net tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups