Search

You searched for the word(s): userid:822952

Matching Posts

  • Re: Custom error pages not displaying!

    Replace the "."(dots) with "_" or any other valid character
    Posted to Getting Started (Forum) by Karrar666 on 9/17/2008
  • Re: Problem with MySQL and ASP.NET 2.0 types

    int16 range is –32768 to 32767 and for unsigned it's 0 to 65535 for ID Column i don't think int16 is good idea you can use int32 or int64 int32 range: –2147483648 to 2147483647 unsigned:- 0 to 4294967295 int64 range: –9223372036854775808 to 9223372036854775807 unsigned:- 0 to 18446744073709551615
    Posted to MySQL (Forum) by Karrar666 on 9/5/2008
  • Re: Insert and show unicode data using VB.NET and MySQL 4.1

    You need to modify you Connection String and add Character Set=utf8 it should be like this "User Id=YourUserID;Password=YourPassword;Port=3306;Database=YourDatabaseName;Character Set=utf8;" and Don't forget to change you column charset
    Posted to MySQL (Forum) by Karrar666 on 9/5/2008
  • Re: Value problem in mysql

    "User Id=root;Password=YouPassword;Port=3306;Database=DatabaseNameCharacter Set=utf8;"
    Posted to MySQL (Forum) by Karrar666 on 9/5/2008
  • Re: how to update columes in the mysql using C#.net

    MySqlParameter usernameParameter = new MySqlParameter ( "?username" , MySqlDbType .VarChar, 150); // You can use string patameter usernameParameter.Value = string ( string )Session[ "username" ]; cmd.Parameter.Add(usernameParameter); MySqlParameter seekingParameter = new MySqlParameter ( "?seeking" , MySqlDbType .Int32, 0); // You can use Integer Patameter seekingParameter.Value = ddlseek.Text; cmd.Parameter.Add(seekingParameter); MySqlParameter agefromParameter = new
    Posted to MySQL (Forum) by Karrar666 on 9/5/2008
  • Re: Need tips implementing .NET security on Oracle

    if you meant the Membership and Roles..etc you can find it with ODT(Oracle Developer Tool) just download it from oracle site http://www.oracle.com/technology/software/tech/dotnet/odt_index.html and install it then run {ODTHome}/ASP.NET/SQL/InstallAllOracleASPNETProviders.sql excuse my english :(
    Posted to Oracle (Forum) by Karrar666 on 9/5/2008
  • Re: DataTable as a parameter in PL/SQL procedure?

    You can do that by using Oracle Database Extensions for .NET with it you can write oracle pocedures, functions in a .NET language such as C# or VB.NET. for more infomation http://www.oracle.com/technology/tech/dotnet/ode/index.html ;) excuse my english
    Posted to Oracle (Forum) by Karrar666 on 9/5/2008
  • Re: Is it possible to connect to an Oracle database using datasets and tableadapters as you normally do with MS Server?

    The best Way to do that is using ODP(Oracle Data Provider) Classes you can download it for free from Oracle site http://www.oracle.com/technology/tech/dotnet/index.html Public Shared Function GetNames( ByVal NameLike As String ) As DataTable Dim Connection As OracleConnection = MyDataBase.DataBaseConnection() Dim Command As New OracleCommand( "GETNAMESLIKE" , Connection) Command.CommandType = CommandType.StoredProcedure Dim RefParameter As New OracleParameter With RefParameter .ParameterName
    Posted to Oracle (Forum) by Karrar666 on 9/5/2008
  • Re: Date format valid for oracle???

    The Best Solve is to use ODP .net Oralce Data Provider you can download it for free from Oracle web site http://www.oracle.com/technology/tech/dotnet/index.html OracleParameter class will do all the work for you even if you change the date format in the server Dim DateParameter As New OracleParameter With DateParameter .OracleDbType = OracleDbType.Date .ParameterName = ":INCIDENT_DateParameter" .Direction = ParameterDirection.Input .SourceColumn = "INCIDENT_DATE" .Value = '11
    Posted to Oracle (Forum) by Karrar666 on 8/31/2008
  • Re: Insert statement in Oracle

    Add Unique index on the column The DUP_VAL_ON_INDEX exception will rise when you trying to insert already existes value Insert into Entity_Info Values( ENTNOSEQ .NEXTVAL, 'LS' , 'L' , 'Y' ); EXCEPTION WHEN DUP_VAL_ON_INDEX Then --Do Nothing End ;
    Posted to Oracle (Forum) by Karrar666 on 8/31/2008
Page 1 of 1 (10 items)