Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 136 for Mysql (0.12 sec)

  1. finisher_api.go

    func (db *DB) SavePoint(name string) *DB {
    	if savePointer, ok := db.Dialector.(SavePointerDialectorInterface); ok {
    		// close prepared statement, because SavePoint not support prepared statement.
    		// e.g. mysql8.0 doc: https://dev.mysql.com/doc/refman/8.0/en/sql-prepared-statements.html
    		var (
    			preparedStmtTx   *PreparedStmtTX
    			isPreparedStmtTx bool
    		)
    		// close prepared statement, because SavePoint not support prepared statement.
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. tests/scanner_valuer_test.go

    	nullTime := sql.NullTime{}
    	err := nullTime.Scan(v)
    	t.Time = nullTime.Time
    	return err
    }
    
    func (t EmptyTime) Value() (driver.Value, error) {
    	return time.Now() /* pass tests, mysql 8 doesn't support 0000-00-00 by default */, nil
    }
    
    type NullString struct {
    	sql.NullString
    }
    
    type Point struct {
    	X, Y int
    }
    
    func (point Point) GormDataType() string {
    	return "geo"
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 07 07:02:07 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. tests/associations_test.go

    	Name                   string `gorm:"uniqueIndex:uniq_user_id_name;size:256"`
    }
    
    func TestAssociationEmptyPrimaryKey(t *testing.T) {
    	if DB.Dialector.Name() != "mysql" {
    		t.Skip()
    	}
    	DB.Migrator().DropTable(&AssociationEmptyUser{}, &AssociationEmptyPet{})
    	DB.AutoMigrate(&AssociationEmptyUser{}, &AssociationEmptyPet{})
    
    	id := uint(100)
    	user := AssociationEmptyUser{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. docs/ja/docs/project-generation.md

        * Dockerマルチステージビルド。コンパイルされたコードの保存やコミットが不要。
        * ビルド時にフロントエンドテスト実行 (無効化も可能)。
        * 可能な限りモジュール化されているのでそのまま使用できますが、Vue CLIで再生成したり、必要に応じて作成したりして、必要なものを再利用可能。
    * PostgreSQLデータベースのための**PGAdmin**。(PHPMyAdminとMySQLを使用できるように簡単に変更可能)
    * Celeryジョブ監視のための**Flower**。
    * **Traefik**を使用してフロントエンドとバックエンド間をロードバランシング。同一ドメインに配置しパスで区切る、ただし、異なるコンテナで処理。
    * Traefik統合。Let's Encrypt **HTTPS**証明書の自動生成を含む。
    * GitLab **CI** (継続的インテグレーション)。フロントエンドおよびバックエンドテストを含む。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 18 05:47:45 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  5. src/net/url/url_test.go

    			Host:     "rest.rsc.io",
    			Path:     "/foo/bar/baz/quux",
    			RawPath:  "/foo%2fbar/baz%2Fquux",
    			RawQuery: "alt=media",
    		},
    		"",
    	},
    	// issue 12036
    	{
    		"mysql://a,b,c/bar",
    		&URL{
    			Scheme: "mysql",
    			Host:   "a,b,c",
    			Path:   "/bar",
    		},
    		"",
    	},
    	// worst case host, still round trips
    	{
    		"scheme://!$&'()*+,;=hello!:1/path",
    		&URL{
    			Scheme: "scheme",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. internal/config/notify/help.go

    			Optional:    true,
    			Type:        "number",
    		},
    	}
    
    	HelpMySQL = config.HelpKVS{
    		config.HelpKV{
    			Key:         target.MySQLDSNString,
    			Description: `MySQL data-source-name connection string e.g. "<user>:<password>@tcp(<host>:<port>)/<database>"`,
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    // Mongo and MySQL are not allowed to co-exist with other protocols in one port.
    func isConflictWithWellKnownPort(incoming, existing protocol.Instance, conflict int) bool {
    	if conflict == NoConflict {
    		return true
    	}
    
    	if (incoming == protocol.Mongo ||
    		incoming == protocol.MySQL ||
    		existing == protocol.Mongo ||
    		existing == protocol.MySQL) && incoming != existing {
    		return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/dag.txt

    	quarkus/core/deployment/pom.xml
    quarkus/extensions/reactive-mysql-client/deployment/pom.xml
    	quarkus/extensions/reactive-datasource/deployment/pom.xml
    	quarkus/extensions/vertx/deployment/pom.xml
    	quarkus/extensions/credentials/deployment/pom.xml
    	quarkus/extensions/reactive-mysql-client/runtime/pom.xml
    	quarkus/extensions/smallrye-health/spi/pom.xml
    	quarkus/extensions/devservices/mysql/pom.xml
    	quarkus/extensions/devservices/mariadb/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  9. gradle/verification-metadata.xml

             <artifact name="jitescript-0.4.1.jar">
                <pgp value="8446B9E902A3F3DDEE711FDB8E26FF248BC7AEAD"/>
             </artifact>
          </component>
          <component group="mysql" name="mysql-connector-java" version="8.0.17">
             <artifact name="mysql-connector-java-8.0.17.jar">
                <pgp value="A4A9406876FCBD3C456770C88C718D3B5072E1F5"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/sql-databases.md

    Here we'll see an example using <a href="https://www.sqlalchemy.org/" class="external-link" target="_blank">SQLAlchemy</a>.
    
    You can easily adapt it to any database supported by SQLAlchemy, like:
    
    * PostgreSQL
    * MySQL
    * SQLite
    * Oracle
    * Microsoft SQL Server, etc.
    
    In this example, we'll use **SQLite**, because it uses a single file and Python has integrated support. So, you can copy this example and run it as is.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top